summaryrefslogtreecommitdiffstats
path: root/python/qemu/machine/qtest.py
diff options
context:
space:
mode:
authorJohn Snow2021-09-23 02:49:31 +0200
committerJohn Snow2021-10-12 18:22:11 +0200
commitc163c723ef92d0f629d015902396f2c67328b2e5 (patch)
treee138f7ee8fe46f50c65829d22f2a8f261a03acd7 /python/qemu/machine/qtest.py
parentpython/qmp: add send_fd_scm directly to QEMUMonitorProtocol (diff)
downloadqemu-c163c723ef92d0f629d015902396f2c67328b2e5.tar.gz
qemu-c163c723ef92d0f629d015902396f2c67328b2e5.tar.xz
qemu-c163c723ef92d0f629d015902396f2c67328b2e5.zip
python, iotests: remove socket_scm_helper
It's not used anymore, now. Signed-off-by: John Snow <jsnow@redhat.com> Reviewed-by: Hanna Reitz <hreitz@redhat.com> Reviewed-by: Paolo Bonzini <pbonzini@redhat.com> Message-id: 20210923004938.3999963-11-jsnow@redhat.com Signed-off-by: John Snow <jsnow@redhat.com>
Diffstat (limited to 'python/qemu/machine/qtest.py')
-rw-r--r--python/qemu/machine/qtest.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/python/qemu/machine/qtest.py b/python/qemu/machine/qtest.py
index 395cc8fbfe..f2f9aaa5e5 100644
--- a/python/qemu/machine/qtest.py
+++ b/python/qemu/machine/qtest.py
@@ -115,7 +115,6 @@ class QEMUQtestMachine(QEMUMachine):
wrapper: Sequence[str] = (),
name: Optional[str] = None,
base_temp_dir: str = "/var/tmp",
- socket_scm_helper: Optional[str] = None,
sock_dir: Optional[str] = None,
qmp_timer: Optional[float] = None):
# pylint: disable=too-many-arguments
@@ -126,7 +125,6 @@ class QEMUQtestMachine(QEMUMachine):
sock_dir = base_temp_dir
super().__init__(binary, args, wrapper=wrapper, name=name,
base_temp_dir=base_temp_dir,
- socket_scm_helper=socket_scm_helper,
sock_dir=sock_dir, qmp_timer=qmp_timer)
self._qtest: Optional[QEMUQtestProtocol] = None
self._qtest_path = os.path.join(sock_dir, name + "-qtest.sock")