diff options
Diffstat (limited to 'tests/test-btowc-1.sh')
-rwxr-xr-x | tests/test-btowc-1.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/test-btowc-1.sh b/tests/test-btowc-1.sh new file mode 100755 index 00000000..d6776565 --- /dev/null +++ b/tests/test-btowc-1.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +# Test whether the POSIX locale has encoding errors. +LC_ALL=C \ +${CHECKER} ./test-btowc${EXEEXT} 1 || exit 1 +LC_ALL=POSIX \ +${CHECKER} ./test-btowc${EXEEXT} 1 || exit 1 + +exit 0 |