From 04803faf53f7ea6fd13ce6174e1f7204274ae494 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Thu, 11 Jul 2024 22:08:17 +0200 Subject: [PATCH] specify fs type --- usr/bin/archboot-testsuite.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/bin/archboot-testsuite.sh b/usr/bin/archboot-testsuite.sh index 7c3bdf713..62fe02ea5 100755 --- a/usr/bin/archboot-testsuite.sh +++ b/usr/bin/archboot-testsuite.sh @@ -100,7 +100,7 @@ for i in bcachefs btrfs ext4 swap vfat xfs; do else mkfs.${i} /test.img &>"${_NO_LOG}" || echo "Creation error: ${i}" >> filesystems-error.log sync - mount -o loop /test.img /mnt &>"${_NO_LOG}" || echo "Mount error: ${i}" >> filesystems-error.log + mount -o loop -t "${i}" /test.img /mnt &>"${_NO_LOG}" || echo "Mount error: ${i}" >> filesystems-error.log umount /mnt || echo "Unmount error: ${i}" >> filesystems-error.log fi done