Skip to content

Commit 5449d93

Browse files
committed
Acceptance tests: work around socket dir
Change 32558ce introduced specific directories for the socket dir when using python/qemu/machine.py:QEMUMachine. iotests probably didn't catch the condition that two simultaneous QEMUMachine instances, without manually set temporary or socket dirs would clash. Having two QEMUMachine instances is a condition expected for many acceptance tests, and it's already used by the migration tests. Signed-off-by: Cleber Rosa <[email protected]>
1 parent 1b6ee29 commit 5449d93

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/acceptance/avocado_qemu/__init__.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
import os
1212
import sys
1313
import uuid
14+
import tempfile
1415

1516
import avocado
1617

@@ -69,7 +70,7 @@ def setUp(self):
6970
self.cancel("No QEMU binary defined or found in the source tree")
7071

7172
def _new_vm(self, *args):
72-
vm = QEMUMachine(self.qemu_bin)
73+
vm = QEMUMachine(self.qemu_bin, sock_dir=tempfile.mkdtemp())
7374
if args:
7475
vm.add_args(*args)
7576
return vm

0 commit comments

Comments
 (0)