#!/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"

