aboutsummaryrefslogtreecommitdiff
path: root/crosperf/results_cache.py
diff options
context:
space:
mode:
authorCaroline Tice <cmtice@chromium.org>2013-08-19 15:59:02 -0700
committerChromeBot <chrome-bot@google.com>2013-08-22 16:03:32 -0700
commitb47bff4d3336c5fe5593a95963c0f3dc20a02f68 (patch)
tree4647d51522fa1fcc43fdd9fc40a361177105c611 /crosperf/results_cache.py
parentb0a02f4e9c3fde3198223a9fe70ca85ceaa58105 (diff)
downloadtoolchain-utils-b47bff4d3336c5fe5593a95963c0f3dc20a02f68.tar.gz
Make test_that available for running tests.
Add a new flag, --use_test_that=True/False, to crosperf, to allow users to tell crosperf to use the test_that script rather than the run_remote_tests.sh script for running their tests. BUG=None TEST=Tested with and without the flag, to verify that it does the right thing. Change-Id: I1a040d23adbf364b4a47320d9fd759a2d46e6689 Reviewed-on: https://gerrit-int.chromium.org/43109 Reviewed-by: Luis Lozano <llozano@chromium.org> Reviewed-by: Yunlian Jiang <yunlian@google.com> Commit-Queue: Caroline Tice <cmtice@google.com> Tested-by: Caroline Tice <cmtice@google.com>
Diffstat (limited to 'crosperf/results_cache.py')
-rw-r--r--crosperf/results_cache.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/crosperf/results_cache.py b/crosperf/results_cache.py
index d40c8f31..15ab29b1 100644
--- a/crosperf/results_cache.py
+++ b/crosperf/results_cache.py
@@ -96,6 +96,7 @@ class Result(object):
def _FindFilesInResultsDir(self, find_args):
if not self.results_dir:
return None
+
command = "find %s %s" % (self.results_dir,
find_args)
ret, out, _ = self._ce.RunCommand(command, return_output=True)