Skip to content

Commit 9925136

Browse files
committed
Revert "tests: Run composefs oci pull test on composefs systems"
This reverts commit 93e9c3126c6bd9b14e46e69ddb21b047cd7b73a6. The test fails when running on composefs systems. Need to investigate the actual failure before enabling this test. Assisted-by: Claude Code (Sonnet 4.5)
1 parent 93e9c31 commit 9925136

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

tmt/tests/booted/readonly/030-test-composefs.nu

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,16 @@ tap begin "composefs integration smoke test"
77
let st = bootc status --json | from json
88
let is_composefs = ($st.status.booted.composefs? != null)
99

10-
if not $is_composefs {
10+
if $is_composefs {
11+
# When already on composefs, we can only test read-only operations
12+
print "# TODO composefs: skipping pull test - cfs oci pull requires write access to sysroot"
13+
bootc internals cfs --help
14+
} else {
1115
# When not on composefs, run the full test including initialization
1216
bootc internals test-composefs
17+
bootc internals cfs --help
18+
bootc internals cfs oci pull docker://busybox busybox
19+
test -L /sysroot/composefs/streams/refs/busybox
1320
}
1421

15-
# These tests work on both composefs and non-composefs systems
16-
bootc internals cfs --help
17-
bootc internals cfs oci pull docker://busybox busybox
18-
test -L /sysroot/composefs/streams/refs/busybox
19-
2022
tap ok

0 commit comments

Comments
 (0)