testrunner: Allow spaces in instrumentation arguments and remove check for test

app presence.
This commit is contained in:
Brett Chabot
2009-06-29 13:55:30 -07:00
parent 14b3c0c9a4
commit e0bf8162f0
2 changed files with 2 additions and 9 deletions

View File

@@ -275,7 +275,7 @@ class AdbInterface:
(self.DEVICE_TRACE_DIR, instrumentation_path.split(".")[-1]))
for key, value in instrumentation_args.items():
command_string += " -e %s %s" % (key, value)
command_string += " -e %s '%s'" % (key, value)
if raw_mode:
command_string += " -r"
command_string += " -w %s" % instrumentation_path