aboutsummaryrefslogtreecommitdiff
path: root/run_tests.py
blob: 07174cb2525535cf37c9ccf63fc329f2b6333c48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/python
#
# Copyright 2010 Google Inc. All Rights Reserved.

"""Script to wrap run_remote_tests.sh script.

This script calls run_remote_tests.sh with standard tests.
"""

__author__ = "asharif@google.com (Ahmad Sharif)"

import optparse
import os
import re
import sys

from utils import command_executer
from utils import logger
import build_chromeos


def Main(argv):
  """The main function."""
  print "This script is deprecated.  Use crosperf for running tests."
  return 1

if __name__ == "__main__":
  sys.exit(Main(sys.argv))