aboutsummaryrefslogtreecommitdiff
path: root/run_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'run_tests.py')
-rwxr-xr-xrun_tests.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/run_tests.py b/run_tests.py
new file mode 100755
index 00000000..e1b8ca2f
--- /dev/null
+++ b/run_tests.py
@@ -0,0 +1,23 @@
+#!/usr/bin/env python2
+#
+# 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.
+"""
+
+from __future__ import print_function
+
+__author__ = 'asharif@google.com (Ahmad Sharif)'
+
+import sys
+
+
+def Main():
+ """The main function."""
+ print('This script is deprecated. Use crosperf for running tests.')
+ return 1
+
+
+if __name__ == '__main__':
+ sys.exit(Main())