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

Unified Diff: bin/cros_au_test_harness.py

Issue 3967002: Fix args to RunCommand (Closed) Base URL: http://git.chromium.org/git/crosutils.git
Patch Set: Fix print Created 10 years, 2 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
« no previous file with comments | « bin/cbuildbot.py ('k') | lib/cros_build_lib.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bin/cros_au_test_harness.py
diff --git a/bin/cros_au_test_harness.py b/bin/cros_au_test_harness.py
index 799a5240c878f8d314df4ffbc1f74cb9924b4adb..41baf212686201edada3dedbd0e50b29253d783c 100755
--- a/bin/cros_au_test_harness.py
+++ b/bin/cros_au_test_harness.py
@@ -227,11 +227,11 @@ class VirtualAUTest(unittest.TestCase, AUTest):
Info('Qemu image not found, creating one.')
RunCommand(['%s/image_to_vm.sh' % self.crosutils,
'--full',
- '--from %s' % ReinterpretPathForChroot(
+ '--from=%s' % ReinterpretPathForChroot(
os.path.dirname(base_image_path)),
- '--vdisk_size %s' % _FULL_VDISK_SIZE,
- '--statefulfs_size %s' % _FULL_STATEFULFS_SIZE,
- '--board %s' % board,
+ '--vdisk_size=%s' % _FULL_VDISK_SIZE,
+ '--statefulfs_size=%s' % _FULL_STATEFULFS_SIZE,
+ '--board=%s' % board,
'--test_image'], enter_chroot=True)
else:
Info('Using existing VM image')
« no previous file with comments | « bin/cbuildbot.py ('k') | lib/cros_build_lib.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698