X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fbuild%2Fandroid%2Fpylib%2Fhost_driven%2Ftest_runner.py;h=865be20bfd2b565c84054ec240b8efcffdb6a06d;hb=1afa4dd80ef85af7c90efaea6959db1d92330844;hp=b61fa40ea5d93257cea0e354612087ff9fb9661c;hpb=90762837333c13ccf56f2ad88e4481fc71e8d281;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/build/android/pylib/host_driven/test_runner.py b/src/build/android/pylib/host_driven/test_runner.py index b61fa40..865be20 100644 --- a/src/build/android/pylib/host_driven/test_runner.py +++ b/src/build/android/pylib/host_driven/test_runner.py @@ -48,20 +48,17 @@ class HostDrivenTestRunner(base_test_runner.BaseTestRunner): """ #override - def __init__(self, device, shard_index, tool, push_deps, - cleanup_test_files): + def __init__(self, device, shard_index, tool, cleanup_test_files): """Creates a new HostDrivenTestRunner. Args: device: Attached android device. shard_index: Shard index. tool: Name of the Valgrind tool. - push_deps: If True, push all dependencies to the device. cleanup_test_files: Whether or not to cleanup test files on device. """ - super(HostDrivenTestRunner, self).__init__(device, tool, push_deps, - cleanup_test_files) + super(HostDrivenTestRunner, self).__init__(device, tool, cleanup_test_files) # The shard index affords the ability to create unique port numbers (e.g. # DEFAULT_PORT + shard_index) if the test so wishes. @@ -85,8 +82,7 @@ class HostDrivenTestRunner(base_test_runner.BaseTestRunner): exception_raised = False try: - test.SetUp(str(self.device), self.shard_index, - self._push_deps, self._cleanup_test_files) + test.SetUp(str(self.device), self.shard_index, self._cleanup_test_files) except Exception: logging.exception( 'Caught exception while trying to run SetUp() for test: ' +