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

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

Issue 1050883002: [Android] Reland cleanup of old_interface in build/android/pylib. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed Created 5 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
« no previous file with comments | « build/android/pylib/gtest/test_runner.py ('k') | build/android/pylib/host_driven/test_case.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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 """Setup for instrumentation host-driven tests.""" 5 """Setup for instrumentation host-driven tests."""
6 6
7 import logging 7 import logging
8 import os 8 import os
9 import sys 9 import sys
10 import types 10 import types
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 available_tests = test_collection.GetAvailableTests( 188 available_tests = test_collection.GetAvailableTests(
189 instrumentation_options.annotations, 189 instrumentation_options.annotations,
190 instrumentation_options.exclude_annotations, 190 instrumentation_options.exclude_annotations,
191 instrumentation_options.test_filter) 191 instrumentation_options.test_filter)
192 logging.debug('All available tests: ' + str( 192 logging.debug('All available tests: ' + str(
193 [t.tagged_name for t in available_tests])) 193 [t.tagged_name for t in available_tests]))
194 194
195 def TestRunnerFactory(device, shard_index): 195 def TestRunnerFactory(device, shard_index):
196 return test_runner.HostDrivenTestRunner( 196 return test_runner.HostDrivenTestRunner(
197 device, shard_index, 197 device, shard_index,
198 instrumentation_options.tool, 198 instrumentation_options.tool)
199 instrumentation_options.cleanup_test_files)
200 199
201 return (TestRunnerFactory, available_tests) 200 return (TestRunnerFactory, available_tests)
OLDNEW
« no previous file with comments | « build/android/pylib/gtest/test_runner.py ('k') | build/android/pylib/host_driven/test_case.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698