]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
tests: Avoid test failure in erofs for label length
authorAndrew Hamilton <adhamilt@gmail.com>
Fri, 14 Nov 2025 23:40:09 +0000 (17:40 -0600)
committerDaniel Kiper <daniel.kiper@oracle.com>
Tue, 18 Nov 2025 11:49:32 +0000 (12:49 +0100)
Recently, mkfs.erofs began to enforce that the file system
label is 15 characters or less (excluding NUL terminator).
This causes the current erofs test in GRUB to fail. Reduce
the test label used to fit in this limit allowing the test
to work as expected.

Signed-off-by: Andrew Hamilton <adhamilt@gmail.com>
Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
Reviewed-by: Glenn Washburn <development@efficientek.com>
tests/util/grub-fs-tester.in

index 2302c2ab12b9dc4d3216bae4d1cb71be3ec33feb..54add3b7368975205d32169dcb65297b69781e20 100644 (file)
@@ -386,9 +386,12 @@ for LOGSECSIZE in $(range "$MINLOGSECSIZE" "$MAXLOGSECSIZE" 1); do
                    FSLABEL="g;/_é䏌䐓䏕䎛䎾䏴кит u"
                    #FSLABEL="g;/_é莭莽😁кит u"
                    ;;
-               # FS LIMITATION: reiserfs, extN, jfs and erofs label is at most 16 UTF-8 characters
-               x"reiserfs_old" | x"reiserfs" | x"ext"* | x"lvm"* | x"luks"* | x"mdraid"* | x"jfs" | x"jfs_caseins" | x"erofs_"*)
+               # FS LIMITATION: reiserfs, extN, and jfs label is at most 16 UTF-8 characters
+               x"reiserfs_old" | x"reiserfs" | x"ext"* | x"lvm"* | x"luks"* | x"mdraid"* | x"jfs" | x"jfs_caseins")
                    FSLABEL="g;/éт 莭😁";;
+               # FS LIMITATION: erofs label is at most 15 UTF-8 characters
+               x"erofs_"*)
+                   FSLABEL="g;/é 莭😁";;
                # FS LIMITATION: No underscore, space, semicolon, slash or international characters in UFS* in label. Limited to 32 UTF-8 characters
                x"ufs1" | x"ufs1_sun" | x"ufs2")
                    FSLABEL="grubtest""ieurrucnenreeiurueurewf";;