From fd10a74cc668e312f768f47543eb80a6e418a398 Mon Sep 17 00:00:00 2001 From: Hongyu Ning Date: Tue, 5 Dec 2023 16:00:06 +0800 Subject: [PATCH] [guest-test] Bug Fix: fix typo in qemu_get_config.py fix typo from vm_type to VM_TYPE in qemu_get_config.py [Test Components] tdx [Test Types] func [Supported Devices] spr,emr,gnr,srf Signed-off-by: Hongyu Ning --- guest-test/qemu_get_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guest-test/qemu_get_config.py b/guest-test/qemu_get_config.py index 65f2bb3..b28b452 100755 --- a/guest-test/qemu_get_config.py +++ b/guest-test/qemu_get_config.py @@ -70,7 +70,7 @@ # test_params.py is generated by test_launcher.sh for both qemu_runner.py and test_executor.sh # O-list variables default value from qemu.config.json if 'VM_TYPE' in dir(): - vm_type = vm_type + vm_type = VM_TYPE else: vm_type = qemu_config["common"]["vm_type"]