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

Unified Diff: client/tests/kvm/tests/steps.py

Issue 6883246: Merge autotest upstream from @5318 ~ @5336 (Closed) Base URL: ssh://gitrw.chromium.org:9222/autotest.git@master
Patch Set: patch Created 9 years, 8 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 | « client/tests/kvm/tests/stepmaker.py ('k') | client/tests/kvm/tests/timedrift.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/tests/kvm/tests/steps.py
diff --git a/client/tests/kvm/tests/steps.py b/client/tests/kvm/tests/steps.py
index 3ad0143ab81bee642ff0ae3ee386577f8ba7ba41..e590c00f24ea48219fc54d6f97d48ebd32e9f23a 100644
--- a/client/tests/kvm/tests/steps.py
+++ b/client/tests/kvm/tests/steps.py
@@ -6,7 +6,8 @@ Utilities to perform automatic guest installation using step files.
import os, time, shutil, logging
from autotest_lib.client.common_lib import error
-import kvm_utils, ppm_utils, kvm_monitor
+from autotest_lib.client.virt import virt_utils, ppm_utils, kvm_monitor
+
try:
import PIL.Image
except ImportError:
@@ -191,7 +192,7 @@ def run_steps(test, params, env):
steps_filename = params.get("steps")
if not steps_filename:
raise error.TestError("Steps filename not specified")
- steps_filename = kvm_utils.get_path(test.bindir, steps_filename)
+ steps_filename = virt_utils.get_path(test.bindir, steps_filename)
if not os.path.exists(steps_filename):
raise error.TestError("Steps file not found: %s" % steps_filename)
« no previous file with comments | « client/tests/kvm/tests/stepmaker.py ('k') | client/tests/kvm/tests/timedrift.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698