Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1020)

Unified Diff: utils_py/cros_run_parallel_vm_tests.py

Issue 6736023: Install test scripts into chroot. (Closed) Base URL: http://git.chromium.org/git/crostestutils.git@master
Patch Set: Fix path for chroot Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« cros_run_vm_test ('K') | « ssh_test.sh ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils_py/cros_run_parallel_vm_tests.py
diff --git a/utils_py/cros_run_parallel_vm_tests.py b/utils_py/cros_run_parallel_vm_tests.py
index b3bfd6a68f7db353a2e6d6f2296d462dc7991aed..30fcac8d07fc734a2300a5b110a65c4f16d96d72 100755
--- a/utils_py/cros_run_parallel_vm_tests.py
+++ b/utils_py/cros_run_parallel_vm_tests.py
@@ -71,9 +71,7 @@ class ParallelTestRunner(object):
ssh_port = self._base_ssh_port
spawned_tests = []
for test in self._tests:
- # TODO(sosa): Fix when called from /usr/bin inside the chroot.
- args = [ os.path.join(os.path.dirname(os.path.realpath(__file__)),
- '../cros_run_vm_test'),
+ args = [ 'cros_run_vm_test',
petkov 2011/03/30 14:32:16 I assume Popen below does a path lookup?
sosa 2011/03/30 18:35:50 Yes. Re-verified it. On 2011/03/30 14:32:16, petk
'--snapshot', # The image is shared so don't modify it.
'--no_graphics',
'--use_emerged',
« cros_run_vm_test ('K') | « ssh_test.sh ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698