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

Side by Side Diff: build/android/pylib/host_driven/java_unittest_utils.py

Issue 13604006: [Android] Remove emma coverage logic for instrumentation tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | build/android/pylib/host_driven/python_test_base.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 """This file is imported by python tests ran by run_python_tests.py.""" 5 """This file is imported by python tests ran by run_python_tests.py."""
6 6
7 import os 7 import os
8 8
9 from pylib import android_commands 9 from pylib import android_commands
10 from pylib.instrumentation import test_runner 10 from pylib.instrumentation import test_runner
11 11
12 12
13 def _GetPackageName(fname): 13 def _GetPackageName(fname):
14 """Extracts the package name from the test file path.""" 14 """Extracts the package name from the test file path."""
15 base_root = os.path.join('com', 'google', 'android') 15 base_root = os.path.join('com', 'google', 'android')
16 dirname = os.path.dirname(fname) 16 dirname = os.path.dirname(fname)
17 package = dirname[dirname.rfind(base_root):] 17 package = dirname[dirname.rfind(base_root):]
18 return package.replace(os.sep, '.') 18 return package.replace(os.sep, '.')
19 19
20 20
21 def RunJavaTest(fname, suite, test, ports_to_forward): 21 def RunJavaTest(fname, suite, test, ports_to_forward):
22 device = android_commands.GetAttachedDevices()[0] 22 device = android_commands.GetAttachedDevices()[0]
23 package_name = _GetPackageName(fname) 23 package_name = _GetPackageName(fname)
24 test = package_name + '.' + suite + '#' + test 24 test = package_name + '.' + suite + '#' + test
25 java_test_runner = test_runner.TestRunner(False, device, [test], False, False, 25 java_test_runner = test_runner.TestRunner(False, device, [test], False,
26 False, False, 0, ports_to_forward) 26 False, False, 0, ports_to_forward)
27 return java_test_runner.Run() 27 return java_test_runner.Run()
OLDNEW
« no previous file with comments | « no previous file | build/android/pylib/host_driven/python_test_base.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698