1#!/bin/sh
2# $FreeBSD$
3# A really simple script to create a swap-backed msdosfs filesystem, then
4# test to make sure the nmount conversion(mount_msdosfs.c rev 1.37)
5# doesn't break multi-byte characters.
6
7mkdir /tmp/msdosfstest/
8mdconfig -a -t swap -s 128m -u 10
9bsdlabel -w md10 auto
10newfs_msdos -F 32 -b 8192 /dev/md10a
11mount_msdosfs -L zh_TW.Big5 -D CP950 /dev/md10a /tmp/msdosfstest/
12mkdir '/tmp/msdosfstest/�O�_�ݹL�{���`�����\����\���y�\�b�Y�\���ĥ|��'
13cd '/tmp/msdosfstest/�O�_�ݹL�{���`�����\����\���y�\�b�Y�\���ĥ|��'
14if [ $? -eq 0 ]; then
15	echo "ok 6";
16else
17	echo "not ok 6";
18fi
19cd /tmp
20umount /tmp/msdosfstest/
21mdconfig -d -u 10
22rm -rf /tmp/msdosfstest/
23