diff options
| -rwxr-xr-x | services/tests/runtests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/services/tests/runtests.py b/services/tests/runtests.py index 35fec90f6ac5..7980dc23e8e2 100755 --- a/services/tests/runtests.py +++ b/services/tests/runtests.py @@ -61,8 +61,8 @@ def main(): print 'Running tests...' if len(sys.argv) != 1: - run('adb shell am instrument -w "%s" %s' % - (INSTRUMENTED_PACKAGE_RUNNER, ' '.join(sys.argv[1:]))) + run('adb shell am instrument -w %s "%s"' % + (' '.join(sys.argv[1:]), INSTRUMENTED_PACKAGE_RUNNER)) return 0 # It would be nice if the activity manager accepted a list of packages, but |