blob: 11bbb8c3daa6fedceaa3ad2d3d1e13cf3119974c [file] [log] [blame]
Mike Frysingerc7f15932013-03-20 13:43:35 -04001#!/usr/bin/python
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
Luis Lozanof2a3ef42015-12-15 13:49:30 -08009__author__ = 'asharif@google.com (Ahmad Sharif)'
asharif8c227da2013-02-15 04:35:52 +000010
11import optparse
12import os
asharif3c3c7ab2013-02-15 04:56:40 +000013import re
asharif8c227da2013-02-15 04:35:52 +000014import sys
kbaclawski20082a02013-02-16 02:12:57 +000015
raymes01959ae2013-02-15 04:50:07 +000016from utils import command_executer
asharifc20ed542013-02-15 10:22:19 +000017from utils import logger
asharifc72bccd2013-02-15 10:24:18 +000018import build_chromeos
asharif8c227da2013-02-15 04:35:52 +000019
asharif8c227da2013-02-15 04:35:52 +000020
asharif8697d4e2013-02-15 09:18:09 +000021def Main(argv):
asharif8c227da2013-02-15 04:35:52 +000022 """The main function."""
Luis Lozanof2a3ef42015-12-15 13:49:30 -080023 print 'This script is deprecated. Use crosperf for running tests.'
cmticed96e4572015-05-19 16:19:25 -070024 return 1
asharif8c227da2013-02-15 04:35:52 +000025
Luis Lozanof2a3ef42015-12-15 13:49:30 -080026
27if __name__ == '__main__':
kbaclawski5fec5502013-02-15 19:55:56 +000028 sys.exit(Main(sys.argv))