Fix up shell script

This commit is contained in:
Matthias Clasen 2006-04-05 05:31:11 +00:00
parent a1b1b4f47a
commit 5525aa52c9
3 changed files with 7 additions and 6 deletions

View File

@ -1,5 +1,7 @@
2006-04-05 Matthias Clasen <mclasen@redhat.com>
* tests/run-collate-tests.sh: Fix up shell script.
* tests/option-test.c (arg_test5): Skip the test if
setting the locale fails.
(empty_test1): Reset prgname before the test.

View File

@ -1,5 +1,7 @@
2006-04-05 Matthias Clasen <mclasen@redhat.com>
* tests/run-collate-tests.sh: Fix up shell script.
* tests/option-test.c (arg_test5): Skip the test if
setting the locale fails.
(empty_test1): Reset prgname before the test.

View File

@ -25,17 +25,14 @@ for I in ${srcdir:-.}/collate/*.in; do
echo_v "Sorting $I"
name=`basename $I .in`
./unicode-collate $I > collate.out
if ! diff collate.out ${srcdir:-.}/collate/$name.unicode; then
diff collate.out ${srcdir:-.}/collate/$name.unicode ||
fail "unexpected error when using g_utf8_collate() on $I"
fi
./unicode-collate --key $I > collate.out
if ! diff collate.out ${srcdir:-.}/collate/$name.unicode; then
diff collate.out ${srcdir:-.}/collate/$name.unicode ||
fail "unexpected error when using g_utf8_collate_key() on $I"
fi
./unicode-collate --file $I > collate.out
if ! diff collate.out ${srcdir:-.}/collate/$name.file; then
diff collate.out ${srcdir:-.}/collate/$name.file ||
fail "unexpected error when using g_utf8_collate_key_for_filename() on $I"
fi
done
echo_v "All tests passed."