From: Thomas Huth Date: Tue, 18 Feb 2025 15:27:31 +0000 (+0100) Subject: tests/functional: Provide a proper name for the VMs in the replay tests X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=006453f4003aa376086aa1faa13f96e624fdc940;p=qemu.git 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 Message-ID: <20250218152744.228335-2-thuth@redhat.com> --- diff --git a/tests/functional/replay_kernel.py b/tests/functional/replay_kernel.py index 8e8ac7d052..80795eb052 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...')