@@ -73,6 +73,11 @@ all() { # Run all tests
7373test_pytest_ops () { # Test ops and other things
7474 echo " ${TEST_SUITE_NAME} : Run pytest"
7575
76+ # Make sure to not run this tests on FVP by removing the elf builds,
77+ # as they are detected by the unit tests and used if they exists
78+ rm -Rf arm_test/arm_semihosting_executor_runner_corstone-300
79+ rm -Rf arm_test/arm_semihosting_executor_runner_corstone-320
80+
7681 # Prepare for pytest
7782 backends/arm/scripts/build_executorch.sh
7883
@@ -84,6 +89,11 @@ test_pytest_ops() { # Test ops and other things
8489test_pytest_models () { # Test ops and other things
8590 echo " ${TEST_SUITE_NAME} : Run pytest"
8691
92+ # Make sure to not run this tests on FVP by removing the elf builds,
93+ # as they are detected by the unit tests and used if they exists
94+ rm -Rf arm_test/arm_semihosting_executor_runner_corstone-300
95+ rm -Rf arm_test/arm_semihosting_executor_runner_corstone-320
96+
8797 # Prepare for pytest
8898 backends/arm/scripts/build_executorch.sh
8999
@@ -105,7 +115,9 @@ test_pytest_ops_ethosu_fvp() { # Same as test_pytest but also sometime verify us
105115 # Prepare Corstone-3x0 FVP for pytest
106116 backends/arm/scripts/build_executorch.sh
107117 backends/arm/scripts/build_portable_kernels.sh
108- # Build semihosting version of the runner used by pytest testing when
118+ # Build semihosting version of the runner used by pytest testing. This builds:
119+ # arm_test/arm_semihosting_executor_runner_corstone-300
120+ # arm_test/arm_semihosting_executor_runner_corstone-320
109121 backends/arm/test/setup_testing.sh
110122
111123 # Run arm baremetal pytest tests with FVP
@@ -119,7 +131,9 @@ test_pytest_models_ethosu_fvp() { # Same as test_pytest but also sometime verify
119131 # Prepare Corstone-3x0 FVP for pytest
120132 backends/arm/scripts/build_executorch.sh
121133 backends/arm/scripts/build_portable_kernels.sh
122- # Build semihosting version of the runner used by pytest testing
134+ # Build semihosting version of the runner used by pytest testing. This builds:
135+ # arm_test/arm_semihosting_executor_runner_corstone-300
136+ # arm_test/arm_semihosting_executor_runner_corstone-320
123137 backends/arm/test/setup_testing.sh
124138
125139 # Run arm baremetal pytest tests with FVP
0 commit comments