summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2026-07-31 14:19:35 -0600
committerTom Rini <[email protected]>2026-08-06 19:36:56 -0600
commit06c866fee0052579dbd27456fac425d002d44a80 (patch)
tree179514a23f7fff3135661c2e177f40f656966ed1
parentf2dcc47efc4ffabb4080967279822bb4f3901937 (diff)
Gitlab CI: sage: Disable test_net_tftpboot_boot on Raspberry Pi 4 for now
With commit 623f6c5b6ab7 ("boot: image-fdt: free old dtb reservations") we now get: ERROR: freeing fdt memory region failed (addr=3ef667e0 size=36 flags=2): -1 ERROR: freeing fdt memory region failed (addr=3ef663a0 size=400 flags=2): -1 on console when booting, which is non-fatal but leads to the test failing. Disable this test for now. Acked-by: Ilias Apalodimas <[email protected]> Signed-off-by: Tom Rini <[email protected]>
-rw-r--r--.gitlab-ci-sage-lab.yml7
1 files changed, 6 insertions, 1 deletions
diff --git a/.gitlab-ci-sage-lab.yml b/.gitlab-ci-sage-lab.yml
index 90f97696f86..9e1c2378c6e 100644
--- a/.gitlab-ci-sage-lab.yml
+++ b/.gitlab-ci-sage-lab.yml
@@ -144,6 +144,9 @@ Raspberry Pi 4:
LABGRID_EXPORTER: "sage-exporter-rpi4-1"
LG_PLACE: "rpi4-1"
TEST_PY_BD: "rpi_4"
+ # With commit 623f6c5b6ab7 we get "ERROR" messages that are
+ # harmless during OS boot but fail the test.
+ TEST_PY_TEST_SPEC: "not test_net_tftpboot_boot"
OVERRIDE: "-a UNIT_TEST -a ~CMD_EFIDEBUG -a CMD_BOOTMENU -a CMD_LOG -a ~CMD_BOOTEFI_SELFTEST -a CMD_TFTPPUT -a FIT -a FIT_SIGNATURE -a FIT_BEST_MATCH -a SYS_BOOTM_LEN=0x4000000 -a BOOTSTAGE -a BOOTSTAGE_STASH -a CMD_BOOTSTAGE -a BOOTSTAGE_STASH_ADDR=0x02400000"
Raspberry Pi 4 (rpi_arm64):
@@ -154,7 +157,9 @@ Raspberry Pi 4 (rpi_arm64):
LG_PLACE: "rpi4-1"
TEST_PY_BD: "rpi_arm64"
# DHCP is not being run first, needs to be investigated.
- TEST_PY_TEST_SPEC: "not test_efi_helloworld_net_http"
+ # With commit 623f6c5b6ab7 we get "ERROR" messages that are
+ # harmless during OS boot but fail the test.
+ TEST_PY_TEST_SPEC: "not test_efi_helloworld_net_http and not test_net_tftpboot_boot"
OVERRIDE: "-a UNIT_TEST -a ~CMD_EFIDEBUG -a CMD_BOOTMENU -a CMD_LOG -a ~CMD_BOOTEFI_SELFTEST -a FIT -a FIT_SIGNATURE -a FIT_BEST_MATCH -a SYS_BOOTM_LEN=0x4000000 -a BOOTSTAGE -a BOOTSTAGE_STASH -a CMD_BOOTSTAGE -a BOOTSTAGE_STASH_ADDR=0x02400000"
Raspberry Pi 4 (rpi_4_32b):