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