aboutsummaryrefslogtreecommitdiff
path: root/tests/functional/qemu_test
diff options
context:
space:
mode:
authorDaniel P. Berrangé <berrange@redhat.com>2025-02-28 10:27:32 +0000
committerThomas Huth <thuth@redhat.com>2025-03-06 08:10:04 +0100
commit6c5a1467f8d0a9e840c8aa193bc110cc76ee80e8 (patch)
tree8eb6c83f6686215f30f2ac4358b81311a810652a /tests/functional/qemu_test
parente8a01102936286e012ed0f00bd7f3b7474d415c9 (diff)
downloadqemu-6c5a1467f8d0a9e840c8aa193bc110cc76ee80e8.zip
qemu-6c5a1467f8d0a9e840c8aa193bc110cc76ee80e8.tar.gz
qemu-6c5a1467f8d0a9e840c8aa193bc110cc76ee80e8.tar.bz2
tests/functional: remove unused 'bin_prefix' variable
This was copied over from avocado but has not been used in the new functional tests. Reviewed-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-ID: <20250228102738.3064045-2-berrange@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests/functional/qemu_test')
-rw-r--r--tests/functional/qemu_test/testcase.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/functional/qemu_test/testcase.py b/tests/functional/qemu_test/testcase.py
index 869f394..9d5611c 100644
--- a/tests/functional/qemu_test/testcase.py
+++ b/tests/functional/qemu_test/testcase.py
@@ -192,7 +192,7 @@ class QemuBaseTest(unittest.TestCase):
return False
return True
- def setUp(self, bin_prefix):
+ def setUp(self):
self.assertIsNotNone(self.qemu_bin, 'QEMU_TEST_QEMU_BINARY must be set')
self.arch = self.qemu_bin.split('-')[-1]
self.socketdir = None
@@ -254,7 +254,7 @@ class QemuBaseTest(unittest.TestCase):
class QemuUserTest(QemuBaseTest):
def setUp(self):
- super().setUp('qemu-')
+ super().setUp()
self._ldpath = []
def add_ldpath(self, ldpath):
@@ -277,7 +277,7 @@ class QemuSystemTest(QemuBaseTest):
def setUp(self):
self._vms = {}
- super().setUp('qemu-system-')
+ super().setUp()
console_log = logging.getLogger('console')
console_log.setLevel(logging.DEBUG)