grub-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 06/10] tests: Change FAT volume label to be with in the valid cha


From: Glenn Washburn
Subject: [PATCH 06/10] tests: Change FAT volume label to be with in the valid character range
Date: Fri, 17 Sep 2021 23:04:00 +0000

The ';', semi-colon, character is not a valid character for a FAT filesystem
label. This test used to succeed because prior to v4.2 of dosfstools
mkfs.vfat did not enforce the character restrictions for volume labels. So
change the volume label string to be valid but contain symbol characters to
test odd volume labels.

Signed-off-by: Glenn Washburn <development@efficientek.com>
---
 tests/util/grub-fs-tester.in | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/tests/util/grub-fs-tester.in b/tests/util/grub-fs-tester.in
index 96b204590..537cdd48b 100644
--- a/tests/util/grub-fs-tester.in
+++ b/tests/util/grub-fs-tester.in
@@ -343,9 +343,10 @@ for LOGSECSIZE in $(range "$MINLOGSECSIZE" 
"$MAXLOGSECSIZE" 1); do
            # FS LIMITATION: XFS label is at most 12 UTF-8 characters
                x"xfs"|x"xfs_crc")
                    FSLABEL="géт 😁к";;
-            # FS LIMITATION: FAT labels limited to 11 characters, no  
international characters or lowercase
+            # FS LIMITATION: FAT labels limited to 11 characters, no 
international characters or lowercase
+           # and excluding the restricted characters in "*?.,;:/\|+=<>[]"
                x"vfat"* | xmsdos*)
-                   FSLABEL="GRUBTEST ;_";;
+                   FSLABEL="G~!@#\$%^&(_";;
            # FS LIMITATION: AFFS is latin1. At most 29 characters
                x"affs" | xaffs_intl)
                    FSLABEL="grub_tt? #*w;/e£@¡¤½¾{[]}<>.,";;
-- 
2.32.0




reply via email to

[Prev in Thread] Current Thread [Next in Thread]