Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(283)

Unified Diff: build/android/run_instrumentation_tests.py

Issue 10703165: Android: adds instrumentation test runners. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/android/pylib/tests_annotations.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/run_instrumentation_tests.py
diff --git a/build/android/run_instrumentation_tests.py b/build/android/run_instrumentation_tests.py
new file mode 100755
index 0000000000000000000000000000000000000000..1a6e099dff981aa134ed74cfc530a42416e9204b
--- /dev/null
+++ b/build/android/run_instrumentation_tests.py
@@ -0,0 +1,75 @@
+#!/usr/bin/env python
+#
+# Copyright (c) 2012 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+"""Runs both the Python and Java tests."""
+
+import sys
+import time
+
+from pylib import apk_info
+from pylib import test_options_parser
+from pylib import run_java_tests
+from pylib import run_python_tests
+from pylib import run_tests_helper
+from pylib.test_result import TestResults
+
+
+def SummarizeResults(java_results, python_results, annotation):
+ """Summarize the results from the various test types.
+
+ Args:
+ java_results: a TestResults object with java test case results.
+ python_results: a TestResults object with python test case results.
+ annotation: the annotation used for these results.
+
+ Returns:
+ A tuple (all_results, summary_string, num_failing)
+ """
+ all_results = TestResults.FromTestResults([java_results, python_results])
+ summary_string = all_results.LogFull('Instrumentation', annotation)
+ num_failing = (len(all_results.failed) + len(all_results.crashed) +
+ len(all_results.unknown))
+ return all_results, summary_string, num_failing
+
+
+def DispatchInstrumentationTests(options):
+ """Dispatches the Java and Python instrumentation tests, sharding if possible.
+
+ Uses the logging module to print the combined final results and
+ summary of the Java and Python tests. If the java_only option is set, only
+ the Java tests run. If the python_only option is set, only the python tests
+ run. If neither are set, run both Java and Python tests.
+
+ Args:
+ options: command-line options for running the Java and Python tests.
+
+ Returns:
+ An integer representing the number of failing tests.
+ """
+ start_date = int(time.time() * 1000)
+ java_results = TestResults()
+ python_results = TestResults()
+
+ if options.run_java_tests:
+ java_results = run_java_tests.DispatchJavaTests(
+ options,
+ [apk_info.ApkInfo(options.test_apk_path, options.test_apk_jar_path)])
+ if options.run_python_tests:
+ python_results = run_python_tests.DispatchPythonTests(options)
+
+ all_results, summary_string, num_failing = SummarizeResults(
+ java_results, python_results, options.annotation)
+ return num_failing
+
+
+def main(argv):
+ options = test_options_parser.ParseInstrumentationArgs(argv)
+ run_tests_helper.SetLogLevel(options.verbose_count)
+ return DispatchInstrumentationTests(options)
+
+
+if __name__ == '__main__':
+ sys.exit(main(sys.argv))
« no previous file with comments | « build/android/pylib/tests_annotations.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698