Build: Enable FP tests on AN521 & AN552 FVP
FPU feature is supported on AN521 & AN552 FVP now. And FPU
tests on Musca S1 and MPS2 SSE 200 are temporarily disabled
because of known issue. Enable FP tests on AN521 & AN552 FVP
so that FPU feature can be both built and tested on Open CI.
Signed-off-by: Jianliang Shen <jianliang.shen@arm.com>
Change-Id: I87039580fdc84e8102219d3fe26c9b60b0b102ad
diff --git a/lava_helper/lava_helper_configs.py b/lava_helper/lava_helper_configs.py
index e8996a5..0cee521 100644
--- a/lava_helper/lava_helper_configs.py
+++ b/lava_helper/lava_helper_configs.py
@@ -97,7 +97,8 @@
},
"monitors": {
'no_reg_tests': [monitors_no_reg_tests],
- 'reg_tests': [monitors_mcuboot_tests, monitors_s_reg_tests, monitors_ns_reg_tests],
+ # FPU test on FPGA not supported yet
+ 'reg_tests': [monitors_mcuboot_tests, monitors_s_reg_tests, monitors_ns_reg_tests] if 'FPON' not in os.getenv("EXTRA_PARAMS") else [],
'arch_tests': [monitors_arch_tests] if os.getenv("TEST_PSA_API") != "IPC" else [], # FF test on FPGA not supported in LAVA yet
}
}
@@ -210,7 +211,8 @@
"bootloader": "bl2.bin"
},
"monitors": {
- 'reg_tests': [monitors_mcuboot_tests, monitors_s_reg_tests, monitors_ns_reg_tests],
+ # FPU test on AN521 qemu not supported yet
+ 'reg_tests': [monitors_mcuboot_tests, monitors_s_reg_tests, monitors_ns_reg_tests] if 'FPON' not in os.getenv("EXTRA_PARAMS") else [],
}
}