aboutsummaryrefslogtreecommitdiff
path: root/crb/autotest_run.py
diff options
context:
space:
mode:
authorcmtice <cmtice@google.com>2015-05-19 16:19:25 -0700
committerChromeOS Commit Bot <chromeos-commit-bot@chromium.org>2015-05-22 00:07:36 +0000
commitd96e457132abf36c05936121e59acbab819ecd8e (patch)
tree8f507301ad0437cfadaafaf22ae94e50a4f63cbe /crb/autotest_run.py
parent54db5386573e81f36192d5cf0c843158ebafb356 (diff)
downloadtoolchain-utils-d96e457132abf36c05936121e59acbab819ecd8e.tar.gz
Remove run_remote_tests references.
run_remote_tests.sh is about to be removed from ChromeOS. This CL removes all references to run_remote_tests from toolchain-utils. It also updates unittests to make sure they work with recent changes. BUG=crbug:498778 TEST=Verifed results_cache_unittest (and all the other unittests) works with changes. Change-Id: Ic9413bf77a1679e1267b81b182fa7f64da2629b5 Reviewed-on: https://chrome-internal-review.googlesource.com/216884 Reviewed-by: David Sharp <dhsharp@google.com> Commit-Queue: Caroline Tice <cmtice@google.com> Tested-by: Caroline Tice <cmtice@google.com>
Diffstat (limited to 'crb/autotest_run.py')
-rw-r--r--crb/autotest_run.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/crb/autotest_run.py b/crb/autotest_run.py
index d6dc70f5..bae2547f 100644
--- a/crb/autotest_run.py
+++ b/crb/autotest_run.py
@@ -302,11 +302,11 @@ class AutotestRun(threading.Thread):
if self.board:
options += " --board=%s" % self.board
if self.autotest.args:
- options += " %s" % self.autotest.args
+ options += " --args='%s'" % self.autotest.args
if "tegra2" in self.board:
self.DoPowerdHack()
- command += ("&& cros_sdk -- ./run_remote_tests.sh --remote=%s %s %s" %
- (machine_name,
- options,
+ command += ("&& cros_sdk -- /usr/bin/test_that %s %s %s" %
+ (options,
+ machine_name,
self.autotest.name))
return self._ce.RunCommand(command, True)