Fix up shell script
authorMatthias Clasen <matthiasc@src.gnome.org>
Wed, 5 Apr 2006 05:31:11 +0000 (05:31 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Wed, 5 Apr 2006 05:31:11 +0000 (05:31 +0000)
ChangeLog
ChangeLog.pre-2-12
tests/run-collate-tests.sh

index 2284a5a..1a581cf 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
index 2284a5a..1a581cf 100644 (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.
index 73e4ea3..b27f7d6 100755 (executable)
@@ -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."