From 71002dc00f1b73180b4902bec8c8e8d201a02bb8 Mon Sep 17 00:00:00 2001 From: Bruno Wolff III Date: May 22 2019 18:36:11 +0000 Subject: Auto detect for squashfs might not be working --- diff --git a/tests/Squashfs-compression-test.sh b/tests/Squashfs-compression-test.sh index cfd1912..d529a74 100755 --- a/tests/Squashfs-compression-test.sh +++ b/tests/Squashfs-compression-test.sh @@ -111,7 +111,7 @@ for comp in ${ucomp[*]}; do for kern in ${mcomp[*]}; do if [ ${kern} == ${comp} ]; then echo "Testing mounted image using ${comp} compression." - mount -r -o loop ${testdir}/sq.img ${mp} || echo "Mount failed."; + mount -r -o loop -t squashfs ${testdir}/sq.img ${mp} || echo "Mount failed."; diff -r -q ${mp} ${datadir} || echo "Mounted test failed for ${comp} compression." umount ${mp} break