Add tests that check that SPL can generate a standard passage on ARM and that U-Boot proper can accept it successfully.
- Finish the commit message Signed-off-by: Simon Glass <s...@chromium.org> --- (no changes since v3) Changes in v3: - Add test for aarch64 - Add tests for azure .azure-pipelines.yml | 6 ++++++ .gitlab-ci.yml | 12 ++++++++++++ 2 files changed, 18 insertions(+) diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 5e1938b0526..4378ba4ec9d 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -459,6 +459,12 @@ stages: qemu_arm_sbsa_ref: TEST_PY_BD: "qemu-arm-sbsa" TEST_PY_TEST_SPEC: "not sleep" + qemu_arm_spl: + TEST_PY_BD: "qemu_arm_spl" + TEST_PY_TEST_SPEC: "test_passage" + qemu_arm64_spl: + TEST_PY_BD: "qemu_arm64_spl" + TEST_PY_TEST_SPEC: "test_passage" qemu_m68k: TEST_PY_BD: "M5208EVBE" TEST_PY_ID: "--id qemu" diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6f11331514b..bd8ec7555a8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -394,6 +394,18 @@ qemu_arm_sbsa test.py: TEST_PY_TEST_SPEC: "not sleep" <<: *buildman_and_testpy_dfn +qemu_arm spl_test.py: + variables: + TEST_PY_BD: "qemu_arm_spl" + TEST_PY_TEST_SPEC: "test_passage" + <<: *buildman_and_testpy_dfn + +qemu_arm64 spl_test.py: + variables: + TEST_PY_BD: "qemu_arm64_spl" + TEST_PY_TEST_SPEC: "test_passage" + <<: *buildman_and_testpy_dfn + qemu_m68k test.py: variables: TEST_PY_BD: "M5208EVBE" -- 2.43.0