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

Unified Diff: build/android/pylib/host_driven/java_unittest_utils.py

Issue 19537004: [Android] Converts host driven tests to common test_dispatcher (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@sharding_refactoring
Patch Set: Converts --official-build into a boolean flag Created 7 years, 4 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/base/test_dispatcher.py ('k') | build/android/pylib/host_driven/python_test_base.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/pylib/host_driven/java_unittest_utils.py
diff --git a/build/android/pylib/host_driven/java_unittest_utils.py b/build/android/pylib/host_driven/java_unittest_utils.py
deleted file mode 100644
index de90638057bf526da01f3637d32dcb69a7854133..0000000000000000000000000000000000000000
--- a/build/android/pylib/host_driven/java_unittest_utils.py
+++ /dev/null
@@ -1,27 +0,0 @@
-# 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.
-
-"""This file is imported by python tests ran by run_python_tests.py."""
-
-import os
-
-from pylib import android_commands
-from pylib.instrumentation import test_runner
-
-
-def _GetPackageName(fname):
- """Extracts the package name from the test file path."""
- base_root = os.path.join('com', 'google', 'android')
- dirname = os.path.dirname(fname)
- package = dirname[dirname.rfind(base_root):]
- return package.replace(os.sep, '.')
-
-
-def RunJavaTest(fname, suite, test, ports_to_forward):
- device = android_commands.GetAttachedDevices()[0]
- package_name = _GetPackageName(fname)
- test = package_name + '.' + suite + '#' + test
- java_test_runner = test_runner.TestRunner(False, device, [test], False,
- False, False, 0, ports_to_forward)
- return java_test_runner.Run()
« no previous file with comments | « build/android/pylib/base/test_dispatcher.py ('k') | build/android/pylib/host_driven/python_test_base.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698