Skip to content

Commit a384beb

Browse files
committed
Arm backend: Re-enable Corstone FVP test
Because of a bug tests where not run when given --arm_run_corstoneFVP to pytest. Change-Id: Iaca69b97722825baa2b0d12e18f8e6971261baf4
1 parent 51901f3 commit a384beb

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

backends/arm/test/conftest.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,8 @@
3131
def pytest_configure(config):
3232
pytest._test_options = {} # type: ignore[attr-defined]
3333
pytest._test_options["corstone_fvp"] = False # type: ignore[attr-defined]
34-
if (
35-
getattr(config.option, "arm_run_corestoneFVP", False)
36-
and config.option.arm_run_corstoneFVP
37-
):
34+
35+
if config.option.arm_run_corstoneFVP:
3836
corstone300_exists = shutil.which("FVP_Corstone_SSE-300_Ethos-U55")
3937
corstone320_exists = shutil.which("FVP_Corstone_SSE-320")
4038
if not (corstone300_exists and corstone320_exists):

backends/arm/test/models/test_w2l_arm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def test_w2l_u55_BI(self):
131131

132132
@pytest.mark.slow
133133
@pytest.mark.corstone_fvp
134-
@conftest.expectedFailureOnFVP # TODO: MLBEDSW-10093
134+
@conftest.expectedFailureOnFVP # TODO: MLETORCH-761
135135
def test_w2l_u85_BI(self):
136136
tester = self._test_w2l_ethos_BI_pipeline(
137137
self.w2l,

0 commit comments

Comments
 (0)