diff options
author | Thomas Huth <thuth@redhat.com> | 2025-02-18 16:27:31 +0100 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2025-02-26 07:43:25 +0100 |
commit | 006453f4003aa376086aa1faa13f96e624fdc940 (patch) | |
tree | 14d76d247290acde882f8d807e24bcd35d339c45 | |
parent | d8b913f7c75cd38ad07276033faa51fee68514b4 (diff) | |
download | qemu-006453f4003aa376086aa1faa13f96e624fdc940.zip qemu-006453f4003aa376086aa1faa13f96e624fdc940.tar.gz qemu-006453f4003aa376086aa1faa13f96e624fdc940.tar.bz2 |
tests/functional: Provide a proper name for the VMs in the replay tests
With a proper name the log files get a more meaningful name.
Signed-off-by: Thomas Huth <thuth@redhat.com>
Message-ID: <20250218152744.228335-2-thuth@redhat.com>
-rw-r--r-- | tests/functional/replay_kernel.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/replay_kernel.py b/tests/functional/replay_kernel.py index 8e8ac7d..80795eb 100644 --- a/tests/functional/replay_kernel.py +++ b/tests/functional/replay_kernel.py @@ -34,7 +34,7 @@ class ReplayKernelBase(LinuxKernelTest): logger = logging.getLogger('replay') start_time = time.time() - vm = self.get_vm() + vm = self.get_vm(name='recording' if record else 'replay') vm.set_console() if record: logger.info('recording the execution...') |