381edcda1e
These files contained various combinations of Big5, eucJP and KOI8-U encoded strings. The byte representations of their respective encodings have been translated to $'...' escape sequences as understood by our sh(1). With help from: jilles
43 lines
1.4 KiB
Bash
43 lines
1.4 KiB
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
# A really simple script to create a swap-backed msdosfs filesystem, then
|
|
# test to see if msdosfs_conv.c rev 1.45[2] works properly.
|
|
# Note that this is a requisite condition but far away from sufficient condition.
|
|
# You must check file system by "dir /x" on MS Windows.
|
|
|
|
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 -L ja_JP.eucJP -D CP932 -l /dev/md10a /tmp/msdosfstest
|
|
# The comment is UTF-8, the actual command uses the eucJP representation.
|
|
# touch /tmp/msdosfstest/ア (HALFWIDTH KATAKANA LETTER A)
|
|
touch /tmp/msdosfstest/$'\216\261'
|
|
if [ $? -eq 0 ]; then
|
|
umount /tmp/msdosfstest
|
|
mount_msdosfs -L ja_JP.eucJP -D CP932 -s /dev/md10a /tmp/msdosfstest
|
|
ls /tmp/msdosfstest/$'\216\261'
|
|
if [ $? -eq 0 ]; then
|
|
echo "ok 5 (pass stage 1/2)"
|
|
umount /tmp/msdosfstest
|
|
mount_msdosfs -L uk_UA.KOI8-U -D CP866 -l /dev/md10a /tmp/msdosfstest
|
|
# The comment is UTF-8, the actual command uses the KOI8-U representation.
|
|
# ls /tmp/msdosfstest/▒ (MEDIUM SHADE)
|
|
ls /tmp/msdosfstest/$'\221'
|
|
if [ $? -ne 0 ]; then
|
|
# assume that U+FF71 was recorded with long name
|
|
echo "ok 5 (pass stage 2/2)"
|
|
else
|
|
# only 0xb1 was found (doesn't have long name)
|
|
echo "not ok 5"
|
|
fi
|
|
else
|
|
echo "not ok 5"
|
|
fi
|
|
else
|
|
echo "not ok 5"
|
|
fi
|
|
umount /tmp/msdosfstest
|
|
mdconfig -d -u 10
|
|
rmdir /tmp/msdosfstest
|