From: Tom Rini Date: Tue, 28 Jul 2026 22:12:31 +0000 (-0600) Subject: CI: Azure: Correctly skip semihosting tests on vexpress_fvp X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9e596aee6855edc7e786b90db07e24a4f263daed;p=thirdparty%2Fu-boot.git CI: Azure: Correctly skip semihosting tests on vexpress_fvp In commit d75998b476de ("Docker, CI: Add vexpress_fvp / vexpress_fvp_bloblist support") we specifically disable the semihosting tests on FVP using platforms due to upstream issues. With commit 7ffa20af30dd ("Merge patch series "fs: regression-safe load for null_dev_desc_ok fstypes"") we add a new test that was not caught with "hostfs" because it's a semihosting test. Update the logic in our pipeline to skip all semihosting tests. Signed-off-by: Tom Rini --- diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index dcf2f6155af..352269b0835 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -465,10 +465,10 @@ stages: TEST_PY_TEST_SPEC: "not sleep" vexpress_fvp: TEST_PY_BD: "vexpress_fvp" - TEST_PY_TEST_SPEC: "not sleep and not hostfs" + TEST_PY_TEST_SPEC: "not sleep and not semihosting" vexpress_fvp_bloblist: TEST_PY_BD: "vexpress_fvp_bloblist" - TEST_PY_TEST_SPEC: "not sleep and not hostfs" + TEST_PY_TEST_SPEC: "not sleep and not semihosting" integratorcp_cm926ejs: TEST_PY_BD: "integratorcp_cm926ejs" TEST_PY_ID: "--id qemu"