add missing cpu count to WFE SEV tests

This commit is contained in:
Ciro Santilli 六四事件 法轮功
2020-06-03 05:00:04 +00:00
parent dfa60cd89d
commit e73b200142

View File

@@ -534,13 +534,19 @@ path_properties_tuples = (
'freestanding': freestanding_properties, 'freestanding': freestanding_properties,
'futex_sev.cpp': {'more_than_1s': True}, 'futex_sev.cpp': {'more_than_1s': True},
'sve_addvl.c': {'arm_sve': True}, 'sve_addvl.c': {'arm_sve': True},
'wfe_sev.c': { 'wfe_ldxr_str.cpp': {
'allowed_emulators': {'qemu'},
'test_run_args': {'cpus': 2}
},
'wfe_ldxr_stxr.cpp': {
'allowed_emulators': {'qemu'},
'test_run_args': {'cpus': 2}
},
'wfe_sev.cpp': {
# gem5 bug, WFE not waking up on syscall emulation, # gem5 bug, WFE not waking up on syscall emulation,
# TODO link to bug report. # TODO link to bug report.
'more_than_1s': True, 'allowed_emulators': {'qemu'},
'test_run_args': { 'test_run_args': {'cpus': 2},
'cpus': 2,
},
}, },
}, },
), ),