blob: 07174cb2525535cf37c9ccf63fc329f2b6333c48 [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.
4
5"""Script to wrap run_remote_tests.sh script.
6
7This script calls run_remote_tests.sh with standard tests.
8"""
9
10__author__ = "asharif@google.com (Ahmad Sharif)"
11
12import optparse
13import os
asharif3c3c7ab2013-02-15 04:56:40 +000014import re
asharif8c227da2013-02-15 04:35:52 +000015import sys
kbaclawski20082a02013-02-16 02:12:57 +000016
raymes01959ae2013-02-15 04:50:07 +000017from utils import command_executer
asharifc20ed542013-02-15 10:22:19 +000018from utils import logger
asharifc72bccd2013-02-15 10:24:18 +000019import build_chromeos
asharif8c227da2013-02-15 04:35:52 +000020
asharif8c227da2013-02-15 04:35:52 +000021
asharif8697d4e2013-02-15 09:18:09 +000022def Main(argv):
asharif8c227da2013-02-15 04:35:52 +000023 """The main function."""
cmticed96e4572015-05-19 16:19:25 -070024 print "This script is deprecated. Use crosperf for running tests."
25 return 1
asharif8c227da2013-02-15 04:35:52 +000026
27if __name__ == "__main__":
kbaclawski5fec5502013-02-15 19:55:56 +000028 sys.exit(Main(sys.argv))