1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
#!/bin/sh
echo "*** Running Tests..."
./test-ascii || exit 1
echo "test-ascii PASSED"
./test-utf8 || exit 1
echo "test-utf8 PASSED"
./test-utf8-bom-begin || exit 1
echo "test-utf8-bom-begin PASSED"
./test-utf8-bom-end || exit 1
echo "test-utf8-bom-end PASSED"
./test-binary || exit 0
echo "test-binary PASSED"
./test-ascii-only || exit 0
echo "test-ascii-only PASSED"
./test-utf8-expurgated || exit 0
echo "test-utf8-expurgated PASSED"
./test-utf8-surrogate || exit 0
echo "test-utf8-surrogate PASSED"
./test-utf16-be || exit 0
echo "test-utf16-be PASSED"
./test-utf16-le || exit 0
echo "test-utf16-le PASSED"
echo "*** Finished Tests"
|