Home | History | Annotate | Download | only in toolchain-utils
      1 #!/usr/bin/python2
      2 #
      3 # Copyright 2010 Google Inc. All Rights Reserved.
      4 """Script to wrap run_remote_tests.sh script.
      5 
      6 This script calls run_remote_tests.sh with standard tests.
      7 """
      8 
      9 from __future__ import print_function
     10 
     11 __author__ = 'asharif (at] google.com (Ahmad Sharif)'
     12 
     13 
     14 import sys
     15 
     16 def Main():
     17   """The main function."""
     18   print('This script is deprecated.  Use crosperf for running tests.')
     19   return 1
     20 
     21 
     22 if __name__ == '__main__':
     23   sys.exit(Main())
     24