[qemu-boot-tests] run most of the qemu instances with SMP

Try to stress out running with SMP enabled, which tends to find more
things.
This commit is contained in:
Travis Geiselbrecht
2025-10-04 14:44:37 -07:00
parent 91128ad729
commit 6fb675d3a5

View File

@@ -17,7 +17,7 @@ class QEMUTestRunner:
},
'arm64': {
'script': 'do-qemuarm',
'args': '-6',
'args': '-6s4',
'timeout': 30
},
'm68k': {
@@ -32,17 +32,17 @@ class QEMUTestRunner:
},
'riscv64': {
'script': 'do-qemuriscv',
'args': '-6S',
'args': '-6Ss4',
'timeout': 30
},
'x86': {
'script': 'do-qemux86',
'args': '',
'args': '-s4',
'timeout': 30
},
'x86-64': {
'script': 'do-qemux86',
'args': '-6',
'args': '-6s4',
'timeout': 30
}
}