From 7c573450ffbcb302b580420c7e4cea02c5226599 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Per=20=C3=85strand?= Date: Mon, 26 May 2025 09:57:28 +0200 Subject: [PATCH] Arm backend: Move TOSA unittests to 1.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Run the TOSA 1.0 unit tests by default. Signed-off-by: Per Åstrand Change-Id: Ia6ebc6ef3c110142a60dc959dbb47f3441dad0cb --- backends/arm/test/conftest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backends/arm/test/conftest.py b/backends/arm/test/conftest.py index 936a4f64a10..685f3449592 100644 --- a/backends/arm/test/conftest.py +++ b/backends/arm/test/conftest.py @@ -44,7 +44,7 @@ def pytest_configure(config): if getattr(config.option, "fast_fvp", False): pytest._test_options["fast_fvp"] = config.option.fast_fvp # type: ignore[attr-defined] - pytest._test_options["tosa_version"] = "0.80" # type: ignore[attr-defined] + pytest._test_options["tosa_version"] = "1.0" # type: ignore[attr-defined] if config.option.arm_run_tosa_version: pytest._test_options["tosa_version"] = config.option.arm_run_tosa_version @@ -81,7 +81,7 @@ def try_addoption(*args, **kwargs): nargs="+", help="List of two files. Firstly .pt file. Secondly .json", ) - try_addoption("--arm_run_tosa_version", action="store", default="0.80") + try_addoption("--arm_run_tosa_version", action="store", default="1.0") def pytest_sessionstart(session):