summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vfat-volid/test.sh8
1 files changed, 5 insertions, 3 deletions
diff --git a/vfat-volid/test.sh b/vfat-volid/test.sh
index c194273..33bd179 100644
--- a/vfat-volid/test.sh
+++ b/vfat-volid/test.sh
@@ -97,11 +97,13 @@ for FTYPE in 12 16 32; do
do_test "$SIZE" "-F $FTYPE" "$ID"
rc=$?
if [ $rc -ne 0 ]; then
- echo -en "### FAIL code = $rc" | tee -a $LOG
+ echo -e "### FAIL code = $rc" | tee -a $LOG
+ echo -e "[vfat_${FTYPE}_${SIZE}_$ID]: test failed"
else
- echo -en "### PASS" | tee -a $LOG
+ echo -e "### PASS" | tee -a $LOG
+ echo -e "[vfat_${FTYPE}_${SIZE}_$ID]: test passed"
fi
- echo -e " (FTYPE=$FTYPE, SIZE=$SIZE, ID=$ID)\n" | tee -a $LOG
+ echo -e "(FTYPE=$FTYPE, SIZE=$SIZE, ID=$ID)\n" | tee -a $LOG
done
done
done