]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Avoid test failures on systems where gawk-3.1.5 is installed.
authorBruno Haible <bruno@clisp.org>
Sat, 27 Oct 2007 19:35:29 +0000 (19:35 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:15:24 +0000 (12:15 +0200)
gettext-tools/tests/ChangeLog
gettext-tools/tests/lang-gawk

index 19b1edc7b953c1054ffb62a8498baf5cbb332c61..46282064fac18fdb129ba857aa6970898c2b8ec4 100644 (file)
@@ -1,3 +1,7 @@
+2007-10-27  Bruno Haible  <bruno@clisp.org>
+
+       * lang-gawk: Skip the test if the gawk version is 3.1.5.
+
 2007-10-20  Bruno Haible  <bruno@clisp.org>
 
        * msgmerge-22: New file.
index b464c26299ba26ae62725584b436b15aae24ac68..0b41894789f331fc1a70b06e0a7e65bdd6e2a945 100755 (executable)
@@ -91,11 +91,11 @@ test -d fr/LC_MESSAGES || mkdir fr/LC_MESSAGES
 : ${MSGFMT=msgfmt}
 ${MSGFMT} -o fr/LC_MESSAGES/prog.mo fr.po
 
-# Test for presence of gawk version 3.1.3 or newer.
+# Test for presence of gawk version 3.1.3 or newer, excluding version 3.1.5.
 (gawk --version) >/dev/null 2>/dev/null \
   || { echo "Skipping test: gawk not found"; rm -fr $tmpfiles; exit 77; }
 case `gawk --version 2>&1 | sed -e 's/^[^0-9]*//'` in
-  0.* | 1.* | 2.* | 3.0* | 3.1.0* | 3.1.1* | 3.1.2*)
+  0.* | 1.* | 2.* | 3.0* | 3.1.0* | 3.1.1* | 3.1.2* | 3.1.5*)
     echo "Skipping test: gawk version too old"; rm -fr $tmpfiles; exit 77;;
 esac