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
38 lines
1008 B
Bash
38 lines
1008 B
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[1] works properly.
|
||
|
||
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 uk_UA.KOI8-U -D CP866 -l /dev/md10a /tmp/msdosfstest
|
||
# The comment is UTF-8, the actual command uses the KOI8-U representation.
|
||
# mkdir /tmp/msdosfstest/і (CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I)
|
||
mkdir /tmp/msdosfstest/$'\246'
|
||
if [ $? -eq 0 ]; then
|
||
echo "ok 4 (pass stage 1/3)"
|
||
cd /tmp/msdosfstest/$'\246'
|
||
if [ $? -eq 0 ]; then
|
||
echo "ok 4 (pass stage 2/3)"
|
||
cd /tmp
|
||
umount /tmp/msdosfstest
|
||
mount_msdosfs -L uk_UA.KOI8-U -D CP866 -s /dev/md10a /tmp/msdosfstest
|
||
cd /tmp/msdosfstest/_~1
|
||
if [ $? -eq 0 ]; then
|
||
echo "ok 4 (pass stage 3/3)"
|
||
else
|
||
echo "not ok 4"
|
||
fi
|
||
else
|
||
echo "not ok 4"
|
||
fi
|
||
else
|
||
echo "not ok 4"
|
||
fi
|
||
cd /tmp
|
||
umount /tmp/msdosfstest
|
||
mdconfig -d -u 10
|
||
rmdir /tmp/msdosfstest
|