blob: c755278e0dcc225d26b44225ba40d6d1ef32ce19 [file] [log] [blame]
Caroline Ticeeddb0632016-04-14 09:19:02 -07001#!/usr/bin/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
Caroline Ticeeddb0632016-04-14 09:19:02 -070013
asharif8c227da2013-02-15 04:35:52 +000014import sys
kbaclawski20082a02013-02-16 02:12:57 +000015
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())