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

Unified Diff: client/tests/kvm/tests/build.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/boot_savevm.py ('k') | client/tests/kvm/tests/enospc.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/tests/kvm/tests/build.py
diff --git a/client/tests/kvm/tests/build.py b/client/tests/kvm/tests/build.py
index cbf4aedbf98aaf4148126cbea05e3a83bd484db1..cfebcd6f78ced5a91627ec10228be719eccbdd13 100644
--- a/client/tests/kvm/tests/build.py
+++ b/client/tests/kvm/tests/build.py
@@ -1,4 +1,4 @@
-import installer
+from autotest_lib.client.virt import kvm_installer
def run_build(test, params, env):
@@ -14,7 +14,7 @@ def run_build(test, params, env):
params["srcdir"] = srcdir
try:
- installer_object = installer.make_installer(params)
+ installer_object = kvm_installer.make_installer(params)
installer_object.set_install_params(test, params)
installer_object.install()
env.register_installer(installer_object)
@@ -22,5 +22,5 @@ def run_build(test, params, env):
# if the build/install fails, don't allow other tests
# to get a installer.
msg = "KVM install failed: %s" % (e)
- env.register_installer(installer.FailedInstaller(msg))
+ env.register_installer(kvm_installer.FailedInstaller(msg))
raise
« no previous file with comments | « client/tests/kvm/tests/boot_savevm.py ('k') | client/tests/kvm/tests/enospc.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698