run_tests.py revision d96e457132abf36c05936121e59acbab819ecd8e
1#!/usr/bin/python
2#
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
14import re
15import sys
16
17from utils import command_executer
18from utils import logger
19import build_chromeos
20
21
22def Main(argv):
23  """The main function."""
24  print "This script is deprecated.  Use crosperf for running tests."
25  return 1
26
27if __name__ == "__main__":
28  sys.exit(Main(sys.argv))
29