]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Remove SKIP: messages, now that automake emits them from the Makefile.
authorBruno Haible <bruno@clisp.org>
Thu, 20 Feb 2003 18:04:02 +0000 (18:04 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:10:13 +0000 (12:10 +0200)
19 files changed:
gettext-tools/tests/ChangeLog
gettext-tools/tests/lang-c
gettext-tools/tests/lang-c++
gettext-tools/tests/lang-clisp
gettext-tools/tests/lang-gawk
gettext-tools/tests/lang-java
gettext-tools/tests/lang-librep
gettext-tools/tests/lang-objc
gettext-tools/tests/lang-pascal
gettext-tools/tests/lang-php
gettext-tools/tests/lang-python
gettext-tools/tests/lang-smalltalk
gettext-tools/tests/lang-tcl
gettext-tools/tests/msgfilter-1
gettext-tools/tests/msgfilter-2
gettext-tools/tests/msgunfmt-2
gettext-tools/tests/msgunfmt-3
gettext-tools/tests/xgettext-19
gettext-tools/tests/xgettext-20

index 8ee04689a35df67f9f6df133d5bcca0e672cf8a4..fc1995fc5ba5f139d69d5c9eb465d78a0b2272dd 100644 (file)
@@ -1,3 +1,24 @@
+2003-02-20  Bruno Haible  <bruno@clisp.org>
+
+       * msgfilter-1: Remove SKIP: messages, now emitted by the Makefile.
+       * msgfilter-2: Likewise.
+       * msgunfmt-2: Likewise.
+       * msgunfmt-3: Likewise.
+       * xgettext-19: Likewise.
+       * xgettext-20: Likewise.
+       * lang-c: Likewise.
+       * lang-c++: Likewise.
+       * lang-clisp: Likewise.
+       * lang-gawk: Likewise.
+       * lang-java: Likewise.
+       * lang-librep: Likewise.
+       * lang-objc: Likewise.
+       * lang-pascal: Likewise.
+       * lang-php: Likewise.
+       * lang-python: Likewise.
+       * lang-smalltalk: Likewise.
+       * lang-tcl: Likewise.
+
 2003-02-20  Bruno Haible  <bruno@clisp.org>
 
        * lang-gawk: Skip the test if gawk was built with --disable-nls.
index f18a737d6aed1a008eebbb012834c487168c1e26..9f783f950ce8829a4f03526918875469e8e8c8ea 100755 (executable)
@@ -124,7 +124,7 @@ EOF
 LANGUAGE= ./prog fr_FR 2 > prog.out
 case $? in
   0) ;;
-  77) echo "SKIP: lang-c"; rm -fr $tmpfiles; exit 77;;
+  77) rm -fr $tmpfiles; exit 77;;
   *) exit 1;;
 esac
 ${DIFF} prog.ok prog.out || exit 1
index 08415eaf6449df1d19aec50696a9deb466cc8494..31dcd9dd98714090e05936a2159c6bb79af4bd5c 100755 (executable)
@@ -9,7 +9,7 @@ trap 'rm -fr $tmpfiles' 1 2 3 15
 
 # Test whether a C++ compiler is found.
 if test "${CXX}" = ":"; then
-  echo "SKIP: lang-c++"; exit 77
+  exit 77
 fi
 
 tmpfiles="$tmpfiles prog.cc"
@@ -138,7 +138,7 @@ EOF
 LANGUAGE= ./prog fr_FR 2 > prog.out
 case $? in
   0) ;;
-  77) echo "SKIP: lang-c++"; rm -fr $tmpfiles; exit 77;;
+  77) rm -fr $tmpfiles; exit 77;;
   *) exit 1;;
 esac
 ${DIFF} prog.ok prog.out || exit 1
index d0694a995e357dd26d4a652587363c24152e6be3..5218c7fd8ef9998c39bebff3d4664639759affd9 100755 (executable)
@@ -85,15 +85,15 @@ ${MSGFMT} -o fr/LC_MESSAGES/prog.mo fr.po
 # Use clisp for the comparison of the version numbers; neither 'expr' nor 'bc'
 # can deal with floating-point numbers.
 (clisp --version) >/dev/null 2>/dev/null \
-  || { echo "SKIP: lang-clisp"; rm -fr $tmpfiles; exit 77; }
+  || { rm -fr $tmpfiles; exit 77; }
 version=`clisp --version | sed -e 's/^[^0-9]*//'`
 case $version in
   19* | 20*) # older than 2.25
-    echo "SKIP: lang-clisp"; rm -fr $tmpfiles; exit 77;;
+    rm -fr $tmpfiles; exit 77;;
 esac
 version=`echo $version | sed -e 's/^\([0-9]*\.[0-9]*\).*/\1/'`
 clisp -norc -x "(sys::exit (not (>= $version 2.28)))" >/dev/null \
-  || { echo "SKIP: lang-clisp"; rm -fr $tmpfiles; exit 77; }
+  || { rm -fr $tmpfiles; exit 77; }
 
 tmpfiles="$tmpfiles prog.ok prog.out"
 : ${DIFF=diff}
index 2914f40bbd0c4446111119bb9aa8d8ec94d81af0..feb106625bc6cbd2582d8c16457ea7e8ac0b5ca1 100755 (executable)
@@ -83,15 +83,15 @@ ${MSGFMT} -o fr/LC_MESSAGES/prog.mo fr.po
 
 # Test for presence of gawk version 3.1.1 or newer.
 (gawk --version) >/dev/null 2>/dev/null \
-  || { echo "SKIP: lang-gawk"; rm -fr $tmpfiles; exit 77; }
+  || { rm -fr $tmpfiles; exit 77; }
 case `gawk --version 2>&1 | sed -e 's/^[^0-9]*//'` in
   0.* | 1.* | 2.* | 3.0* | 3.1.0*)
-    echo "SKIP: lang-gawk"; rm -fr $tmpfiles; exit 77;;
+    rm -fr $tmpfiles; exit 77;;
 esac
 
 # Test that gawk wasn't built with --disable-nls.
 LANGUAGE= LC_ALL=fr_FR gawk --version | grep logiciel > /dev/null
-test $? = 0 || { echo "SKIP: lang-gawk"; rm -fr $tmpfiles; exit 77; }
+test $? = 0 || { rm -fr $tmpfiles; exit 77; }
 
 tmpfiles="$tmpfiles prog.ok prog.out"
 : ${DIFF=diff}
index 0eae76165e7e1f0a191932c115a6ca7eb069882d..7ab038d73c82fcedbc1c046f4a5ce1a88e6e70ce 100755 (executable)
@@ -8,7 +8,7 @@ tmpfiles=""
 trap 'rm -fr $tmpfiles' 1 2 3 15
 
 # Test whether we can build and test Java programs.
-test "${TESTJAVA}" = yes || { echo "SKIP: lang-java"; exit 77; }
+test "${TESTJAVA}" = yes || exit 77
 
 tmpfiles="$tmpfiles Program.java"
 cat <<\EOF > Program.java
index 02b36fddc166bb28864be72cc5d2c800d37bd346..0fa2f3cb24f3e01b6609cba4942021b38ffed9c3 100755 (executable)
@@ -69,10 +69,10 @@ ${MSGFMT} -o fr/LC_MESSAGES/prog.mo fr.po
 
 # Test for presence of rep version 0.15.3 or newer.
 (rep --version) >/dev/null 2>/dev/null \
-  || { echo "SKIP: lang-librep"; rm -fr $tmpfiles; exit 77; }
+  || { rm -fr $tmpfiles; exit 77; }
 case `rep --version | sed -e 's/^[^0-9]*//'` in
   0.[0-9] | 0.1[0-5] | 0.[0-9].* | 0.1[0-4].* | 0.15.[0-2] )
-    echo "SKIP: lang-librep"; rm -fr $tmpfiles; exit 77;;
+    rm -fr $tmpfiles; exit 77;;
 esac
 
 tmpfiles="$tmpfiles prog.ok prog.out"
index 160dc59a78ebf0fcb1dc4643f385696dfeccb4a5..a99898a5d81c5141e0cd48eb1635654cc3ab2c3a 100755 (executable)
@@ -19,7 +19,7 @@ int main ()
 }
 EOF
 ${CC} ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} -o hello hello.m 2>/dev/null \
-  || { echo "SKIP: lang-objc"; rm -fr $tmpfiles; exit 77; }
+  || { rm -fr $tmpfiles; exit 77; }
 
 tmpfiles="$tmpfiles prog.m"
 cat <<\EOF > prog.m
@@ -138,7 +138,7 @@ EOF
 LANGUAGE= ./prog fr_FR 2 > prog.out
 case $? in
   0) ;;
-  77) echo "SKIP: lang-objc"; rm -fr $tmpfiles; exit 77;;
+  77) rm -fr $tmpfiles; exit 77;;
   *) exit 1;;
 esac
 ${DIFF} prog.ok prog.out || exit 1
index bae237a1204221ca3f73e82f3bafdeff3c3288a6..61ecbe7829382dc93cb53a92b75c7e6b283744f1 100755 (executable)
@@ -25,7 +25,7 @@ end.
 EOF
 
 tmpfiles="$tmpfiles prog.o prog.rst prog"
-(ppc386 prog.pp) >/dev/null 2>&1 || { echo "SKIP: lang-pascal"; rm -fr $tmpfiles; exit 77; }
+(ppc386 prog.pp) >/dev/null 2>&1 || { rm -fr $tmpfiles; exit 77; }
 
 tmpfiles="$tmpfiles prog.pot"
 : ${XGETTEXT=xgettext}
index 3fd8fbe4840615d322de2f527c56c57ee587936a..76f479322f08c2a429f575fd1e0dbb919943e87c 100755 (executable)
@@ -68,7 +68,7 @@ ${MSGFMT} -o fr/LC_MESSAGES/prog.mo fr.po
 # Test for presence of gawk version 4.0 or newer.
 case `(php -v) 2>/dev/null` in
   [4-9].*) ;;
-  *) echo "SKIP: lang-php"; rm -fr $tmpfiles; exit 77;;
+  *) rm -fr $tmpfiles; exit 77;;
 esac
 
 tmpfiles="$tmpfiles prog.ok prog.out"
index f536e93a328e11e058a7ba599098b85ca9b71259..460c1ac76df783b4928451f78a7a76c1b1f1b0fa 100755 (executable)
@@ -66,10 +66,10 @@ ${MSGFMT} -o fr/LC_MESSAGES/prog.mo fr.po
 
 # Test for presence of python version 2.0 or newer.
 (python -V) >/dev/null 2>/dev/null \
-  || { echo "SKIP: lang-python"; rm -fr $tmpfiles; exit 77; }
+  || { rm -fr $tmpfiles; exit 77; }
 case `python -c 'import sys; print sys.hexversion >= 0x20000F0'` in
   1) ;;
-  *) echo "SKIP: lang-python"; rm -fr $tmpfiles; exit 77;;
+  *) rm -fr $tmpfiles; exit 77;;
 esac
 
 tmpfiles="$tmpfiles prog.ok prog.out"
index 1b39df4178b68939c8a39c07922e243147c9ec9d..2d3485a29037c401b69bbac30087c9893df3bca4 100755 (executable)
@@ -95,10 +95,10 @@ ${MSGFMT} -o fr/LC_MESSAGES/prog.mo fr.po
 
 # Test for presence of gst version 2.0.6 or newer.
 (gst --version) >/dev/null 2>/dev/null \
-  || { echo "SKIP: lang-smalltalk"; rm -fr $tmpfiles; exit 77; }
+  || { rm -fr $tmpfiles; exit 77; }
 case `gst --version | sed -n -e 1p | sed -e 's/^[^0-9]*//'` in
   0.* | 1.* | 2.0 | 2.0.[0-5])
-    echo "SKIP: lang-smalltalk"; rm -fr $tmpfiles; exit 77;;
+    rm -fr $tmpfiles; exit 77;;
 esac
 
 tmpfiles="$tmpfiles prog.ok prog.out"
index d0171ce5c0c831a7a5c44183887241978c1812b4..90d87d1338c033001d1d600c5b40c0455a8cb8f9 100755 (executable)
@@ -72,7 +72,7 @@ package require msgcat
 puts $tcl_version
 EOF
 (tclsh version.tcl) >/dev/null 2>/dev/null \
-  || { echo "SKIP: lang-tcl"; rm -fr $tmpfiles; exit 77; }
+  || { rm -fr $tmpfiles; exit 77; }
 
 tmpfiles="$tmpfiles prog.ok prog.out"
 : ${DIFF=diff}
index 5043d6ba28ac58b0a0aebc5de599953cd930eaf3..80ecf07601a83696c773da6dc2082f9c3bc432ad 100755 (executable)
@@ -19,13 +19,13 @@ fi
 
 # Some fold programs (like SunOS4 and FreeBSD) don't have an option to wrap at
 # spaces.
-echo abc | fold -b -s -w 20 >/dev/null 2>&1 || { echo "SKIP: msgfilter-1"; rm -fr $tmpfiles; exit 77; }
+echo abc | fold -b -s -w 20 >/dev/null 2>&1 || { rm -fr $tmpfiles; exit 77; }
 
 # Some fold programs (like HP-UX) insert a newline at the end, if the last
 # line was not terminated with a newline and the -s option was given.
 foldoutputcount=`echo $ac_n "abc$ac_c" | fold -b -s -w 20 | wc -c`
 foldoutputcount=`echo "$foldoutputcount" | sed -e 's/[         ]//g'`
-test "$foldoutputcount" = 3 || { echo "SKIP: msgfilter-1"; rm -fr $tmpfiles; exit 77; }
+test "$foldoutputcount" = 3 || { rm -fr $tmpfiles; exit 77; }
 
 tmpfiles="$tmpfiles mfi-test1.po"
 cat <<\EOF > mfi-test1.po
index 577c76722bdfb5274ee36c5153c01b4f0979c003..8bb2ade293efb0ecfc46812af10df656577419eb 100755 (executable)
@@ -20,13 +20,13 @@ fi
 # Some sed programs (Solaris etc.) omit the last line if it ended without
 # a newline. We must skip this test when we encounter such a broken sed.
 sedoutput=`echo $ac_n "abc$ac_c" | sed -e s/x/x/`
-test -n "$sedoutput" || { echo "SKIP: msgfilter-2"; rm -fr $tmpfiles; exit 77; }
+test -n "$sedoutput" || { rm -fr $tmpfiles; exit 77; }
 
 # Some sed programs (IRIX, OSF/1 etc.) add a newline to the last line if it
 # doesn't end with a newline.
 sedoutputcount=`echo $ac_n "abc$ac_c" | sed -e s/x/x/ | wc -c`
 sedoutputcount=`echo "$sedoutputcount" | sed -e 's/[   ]//g'`
-test "$sedoutputcount" = 3 || { echo "SKIP: msgfilter-2"; rm -fr $tmpfiles; exit 77; }
+test "$sedoutputcount" = 3 || { rm -fr $tmpfiles; exit 77; }
 
 tmpfiles="$tmpfiles mfi-test2.po"
 cat <<\EOF > mfi-test2.po
index d11cb85a7525759dcbf1a76c889fda326311ae37..cde03f70aea9f5bf1888524bcd56cb239c3ec61d 100755 (executable)
@@ -6,7 +6,7 @@ tmpfiles=""
 trap 'rm -fr $tmpfiles' 1 2 3 15
 
 # Test whether we can compile and execute Java programs.
-test "${TESTJAVA}" = yes || { echo "SKIP: msgunfmt-2"; exit 77; }
+test "${TESTJAVA}" = yes || exit 77
 
 tmpfiles="$tmpfiles fr.po"
 cat <<\EOF > fr.po
index 36e66759697e3146ba7a42c931a66b93efd59707..66d57600eaca71779e7231ddf3a710defcc239cd 100755 (executable)
@@ -13,7 +13,7 @@ fconfigure stdout -encoding utf-8
 puts $tcl_version
 EOF
 (tclsh version.tcl) >/dev/null 2>/dev/null \
-  || { echo "SKIP: msgunfmt-3"; rm -fr $tmpfiles; exit 77; }
+  || { rm -fr $tmpfiles; exit 77; }
 
 tmpfiles="$tmpfiles fr.po"
 cat <<\EOF > fr.po
index eb6ed8902dc37d04774aaf68fcb7f23503fb0a5f..2616aa73e5dbcc2e707278bfc97b16f0589256eb 100755 (executable)
@@ -14,7 +14,7 @@ EOF
 tmpfiles="$tmpfiles xg-test19.pot"
 : ${XGETTEXT=xgettext}
 ${XGETTEXT} -o xg-test19.pot empty.glade 2>/dev/null
-test $? = 0 || { echo "SKIP: xgettext-19"; rm -fr $tmpfiles; exit 77; }
+test $? = 0 || { rm -fr $tmpfiles; exit 77; }
 
 tmpfiles="$tmpfiles widgets.glade"
 cat <<EOF > widgets.glade
index a92ff86391f4398ca1cf8f601bff5f6f043b6a69..a55626d3543276f4bc0bc4fce82b9d2e03924824 100755 (executable)
@@ -15,7 +15,7 @@ EOF
 tmpfiles="$tmpfiles xg-test20.pot"
 : ${XGETTEXT=xgettext}
 ${XGETTEXT} -o xg-test20.pot empty.glade 2>/dev/null
-test $? = 0 || { echo "SKIP: xgettext-20"; rm -fr $tmpfiles; exit 77; }
+test $? = 0 || { rm -fr $tmpfiles; exit 77; }
 
 tmpfiles="$tmpfiles simple.glade"
 cat <<\EOF > simple.glade