run_tests.py revision f2a3ef46f75d2196a93d3ed27f4d1fcf22b54fbe
1#!/usr/bin/python
2#
3# Copyright 2010 Google Inc. All Rights Reserved.
4"""Script to wrap run_remote_tests.sh script.
5
6This script calls run_remote_tests.sh with standard tests.
7"""
8
9__author__ = 'asharif@google.com (Ahmad Sharif)'
10
11import optparse
12import os
13import re
14import sys
15
16from utils import command_executer
17from utils import logger
18import build_chromeos
19
20
21def Main(argv):
22  """The main function."""
23  print 'This script is deprecated.  Use crosperf for running tests.'
24  return 1
25
26
27if __name__ == '__main__':
28  sys.exit(Main(sys.argv))
29