Skip to content

Commit

Permalink
Issue #1224 : kvmusertest.py: hardcoded path prevents kimchi module f…
Browse files Browse the repository at this point in the history
…rom loading when /usr/local prefixes /var
  • Loading branch information
ravanelli authored and alinefm committed Dec 19, 2019
1 parent bc8f14e commit e08abf3
Showing 1 changed file with 2 additions and 1 deletion.
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

0 comments on commit e08abf3

Please sign in to comment.