blob: e1b8ca2fed9ded66975d458213f19dda46ceadd8 [file] [log] [blame]
Caroline Ticef6ef4392017-04-06 17:16:05 -07001#!/usr/bin/env python2
asharif8c227da2013-02-15 04:35:52 +00002#
3# Copyright 2010 Google Inc. All Rights Reserved.
asharif8c227da2013-02-15 04:35:52 +00004"""Script to wrap run_remote_tests.sh script.
5
6This script calls run_remote_tests.sh with standard tests.
7"""
8
Caroline Ticeeddb0632016-04-14 09:19:02 -07009from __future__ import print_function
10
Luis Lozanof2a3ef42015-12-15 13:49:30 -080011__author__ = 'asharif@google.com (Ahmad Sharif)'
asharif8c227da2013-02-15 04:35:52 +000012
asharif8c227da2013-02-15 04:35:52 +000013import sys
kbaclawski20082a02013-02-16 02:12:57 +000014
Caroline Ticef6ef4392017-04-06 17:16:05 -070015
Caroline Ticeeddb0632016-04-14 09:19:02 -070016def Main():
asharif8c227da2013-02-15 04:35:52 +000017 """The main function."""
Caroline Ticeeddb0632016-04-14 09:19:02 -070018 print('This script is deprecated. Use crosperf for running tests.')
cmticed96e4572015-05-19 16:19:25 -070019 return 1
asharif8c227da2013-02-15 04:35:52 +000020
Luis Lozanof2a3ef42015-12-15 13:49:30 -080021
22if __name__ == '__main__':
Caroline Ticeeddb0632016-04-14 09:19:02 -070023 sys.exit(Main())