From: Feng Yang <[email protected]>

Current working folder for
    unattended_install_config = UnattendedInstallConfig(test, params)
    unattended_install_config.setup()
must be kvm folder.

Signed-off-by: Feng Yang <[email protected]>
---
 client/tests/kvm/tests/unattended_install.py |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/client/tests/kvm/tests/unattended_install.py 
b/client/tests/kvm/tests/unattended_install.py
index 50a8c7a..eee1761 100644
--- a/client/tests/kvm/tests/unattended_install.py
+++ b/client/tests/kvm/tests/unattended_install.py
@@ -506,8 +506,11 @@ def run_unattended_install(test, params, env):
     @param params: Dictionary with the test parameters.
     @param env: Dictionary with test environment.
     """
+    cur_folder = os.getcwd()
+    os.chdir(test.bindir)
     unattended_install_config = UnattendedInstallConfig(test, params)
     unattended_install_config.setup()
+    os.chdir(cur_folder)
     vm = env.get_vm(params["main_vm"])
     vm.create()
 
-- 
1.7.1

--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to