Skip to content

Commit

Permalink
Testsuite: fix qemu SMP configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
c-po committed Sep 9, 2023
1 parent b0c50e6 commit a863fe0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/check-qemu-install
Expand Up @@ -143,7 +143,7 @@ def get_qemu_cmd(name, enable_kvm, enable_uefi, disk_img, raid=None, iso_img=Non
macbase = '52:54:00:00:00'
cmd = f'qemu-system-x86_64 \
-name "{name}" \
-smp sockets=1,cpus={cpucount},cores=1 \
-smp {cpucount} sockets=1,cores={cpucount},threads=1 \
-cpu host \
{uefi} \
-m 3G \
Expand Down

1 comment on commit a863fe0

@Apachez-
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should be a comma between cpucount and sockets.

Fix in PR: #395

Please sign in to comment.