]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - tools/regression/msdosfs/msdosfstest-3.sh
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / tools / regression / msdosfs / msdosfstest-3.sh
1 #!/bin/sh
2 # $FreeBSD$
3 # A really simple script to create a swap-backed msdosfs filesystem, then
4 # test to make sure the mbnambuf optimisation(msdosfs_conv.c rev 1.40)
5 # doesn't break multi-byte characters.
6
7 mkdir /tmp/msdosfstest/
8 mdconfig -a -t swap -s 128m -u 10
9 bsdlabel -w md10 auto
10 newfs_msdos -F 16 -b 8192 /dev/md10a
11 mount_msdosfs -L zh_TW.Big5 -D CP950 /dev/md10a /tmp/msdosfstest/
12 # The comment is UTF-8, the actual command uses the Big5 representation.
13 # mkdir /tmp/msdosfstest/012345678_邪惡之美
14 mkdir /tmp/msdosfstest/012345678_$'\250\270\264\143\244\247\254\374'
15 cd /tmp/msdosfstest/012345678_$'\250\270\264\143\244\247\254\374'
16 if [ $? -eq 0 ]; then
17         echo "ok 3";
18 else
19         echo "not ok 3";
20 fi
21 cd /tmp
22 umount /tmp/msdosfstest/
23 mdconfig -d -u 10
24 rmdir /tmp/msdosfstest/