We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48ba83e commit 5a48ce8Copy full SHA for 5a48ce8
tests/validate-mksquashfs-opts.bats
@@ -23,6 +23,13 @@ run \
23
ls "$RO_STORAGE"/overlay/**/*.squash
24
[ "$status" -eq 0 ]
25
26
+# Inspect squashfs metadata
27
+run \
28
+ bash -c 'SQUASH_FILE=$(ls "$RO_STORAGE"/overlay/**/*.squash | head -n1) && unsquashfs -s "$SQUASH_FILE"'
29
+[ "$status" -eq 0 ]
30
+[[ "$output" =~ "Compression zstd" ]]
31
+[[ "$output" =~ "level 3" ]]
32
+
33
run \
34
"$PODMAN_BINARY" \
35
--root "$CLEAN_ROOT" \
0 commit comments