Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue #1224 : kvmusertest.py: hardcoded path prevents kimchi module f… #1290

Merged
merged 1 commit into from
Dec 19, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion kvmusertests.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@

import libvirt
import psutil
from wok.plugins.kimchi.config import get_libvirt_path
from wok.rollbackcontext import RollbackContext

KVMUSERTEST_VM_NAME = 'KVMUSERTEST_VM'
Expand Down Expand Up @@ -60,7 +61,7 @@ def probe_user(cls):
f = libvirt.VIR_DOMAIN_START_AUTODESTROY
dom = conn.createXML(xml, flags=f)
rollback.prependDefer(dom.destroy)
filename = '/var/run/libvirt/qemu/%s.pid' % KVMUSERTEST_VM_NAME
filename = get_libvirt_path() + '/qemu/%s.pid' % KVMUSERTEST_VM_NAME
with open(filename) as f:
pidStr = f.read()
p = psutil.Process(int(pidStr))
Expand Down