freebsd-dev/tools/regression/msdosfs/msdosfstest.sh
Mike Silbersack 756f6b7398 Have the regression test use a path in /tmp for a mount point
instead of a directory that only exists on my machine.
2005-04-17 00:40:27 +00:00

24 lines
663 B
Bash

#!/bin/sh
# $FreeBSD$
# A really simple script to create a swap-backed msdosfs filesystem, copy a few
# files to it, unmount/remount the filesystem, and make sure all is well.
#
# Not very advanced, but better than nothing.
mkdir /tmp/msdosfstest/
mdconfig -a -t swap -s 128m -u 10
bsdlabel -w md10 auto
newfs_msdos -F 16 -b 8192 /dev/md10a
mount_msdosfs /dev/md10a /tmp/msdosfstest/
cp -R /usr/src/bin/ /tmp/msdosfstest/
umount /tmp/msdosfstest/
mount_msdosfs /dev/md10a /tmp/msdosfstest/
diff -u -r /usr/src/bin /tmp/msdosfstest/
if [ $? -eq 0 ]; then
echo "ok 1";
else
echo "not ok 1";
fi
umount /tmp/msdosfstest/
mdconfig -d -u 10
rmdir /tmp/msdosfstest/