Skip to content

Commit

Permalink
test_qemu_fw: Returned virtualization for AARCH64 winpe.
Browse files Browse the repository at this point in the history
  • Loading branch information
MikhailKrichanov committed Sep 3, 2024
1 parent fcb6de9 commit 3cef85d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test_qemu_fw.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def test_firmware(fw_path: str, boot_drive_path: str, expected_string: str, time
machine_string_x86 = f" -cpu Penryn,+smep{',+smap' if smap else ''}{',+rdrand' if rdrand else ''} -smp 2 -machine q35 -m 2048 "
machine_string_arm = ' -cpu cortex-a15 -smp 2 -machine virt,highmem=off ' \
' -accel tcg,tb-size=1024 -m 2048 '
machine_string_arm64 = ' -cpu cortex-a76 -smp 2 -machine virt ' \
machine_string_arm64 = ' -cpu cortex-a76 -smp 2 -machine virt,virtualization=on ' \
'-accel tcg,tb-size=1024 -m 2048 '
if fw_arch == "x86":
p = pexpect.spawn(qemu_x86_runner + machine_string_x86 +
Expand Down

0 comments on commit 3cef85d

Please # to comment.