diff options
Diffstat (limited to 'build/android/pylib/instrumentation/test_runner.py')
-rw-r--r-- | build/android/pylib/instrumentation/test_runner.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/build/android/pylib/instrumentation/test_runner.py b/build/android/pylib/instrumentation/test_runner.py index 9e6e62e..c134326 100644 --- a/build/android/pylib/instrumentation/test_runner.py +++ b/build/android/pylib/instrumentation/test_runner.py @@ -66,13 +66,15 @@ class TestRunner(base_test_runner.BaseTestRunner): - tool: Name of the Valgrind tool. - wait_for_debugger: blocks until the debugger is connected. - disable_assertions: Whether to disable java assertions on the device. + - push_deps: If True, push all dependencies to the device. device: Attached android device. shard_index: Shard index. test_pkg: A TestPackage object. ports_to_forward: A list of port numbers for which to set up forwarders. Can be optionally requested by a test case. """ - super(TestRunner, self).__init__(device, options.tool, options.build_type) + super(TestRunner, self).__init__(device, options.tool, options.build_type, + options.push_deps) self._lighttp_port = constants.LIGHTTPD_RANDOM_PORT_FIRST + shard_index self.build_type = options.build_type |