From e73b200142aef394dcd7988713509e1c34d952ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ciro=20Santilli=20=E5=85=AD=E5=9B=9B=E4=BA=8B=E4=BB=B6=20?= =?UTF-8?q?=E6=B3=95=E8=BD=AE=E5=8A=9F?= Date: Wed, 3 Jun 2020 05:00:04 +0000 Subject: [PATCH] add missing cpu count to WFE SEV tests --- path_properties.py | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/path_properties.py b/path_properties.py index 993616c..fe0a924 100644 --- a/path_properties.py +++ b/path_properties.py @@ -534,13 +534,19 @@ path_properties_tuples = ( 'freestanding': freestanding_properties, 'futex_sev.cpp': {'more_than_1s': 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, # TODO link to bug report. - 'more_than_1s': True, - 'test_run_args': { - 'cpus': 2, - }, + 'allowed_emulators': {'qemu'}, + 'test_run_args': {'cpus': 2}, }, }, ),