From: Eric Blake Date: Tue, 9 Oct 2007 14:09:48 +0000 (-0600) Subject: Silence test-fpending. X-Git-Tag: v0.0~104 X-Git-Url: http://erislabs.net/gitweb/?a=commitdiff_plain;ds=sidebyside;h=c116e7501e246cec2ffee3582e5ed9728b21c7a8;p=gnulib.git Silence test-fpending. * modules/fpending-tests (Files): Add wrapper script. * tests/test-fpending.sh: New file. Signed-off-by: Eric Blake --- diff --git a/ChangeLog b/ChangeLog index 0033feb6a..bb9a66472 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-10-09 Eric Blake + + Silence test-fpending. + * modules/fpending-tests (Files): Add wrapper script. + * tests/test-fpending.sh: New file. + 2007-10-09 Bruno Haible * MODULES.html.sh (func_module): Don't create a hyperlink for @@ -1177,7 +1183,7 @@ * doc/functions/floorf.texi: Mention the 'floorf' module. 2007-10-04 Benoit Sigoure - Bruno Haible + Bruno Haible Advertise for the Git server instead of the CVS server. * doc/gnulib-intro.texi (Steady Development): Mention the Git @@ -1307,8 +1313,8 @@ * lib/fseeko.c (rpl_fseeko): Likewise. 2007-10-03 Bruno Haible - Jim Meyering - Eric Blake + Jim Meyering + Eric Blake * doc/relocatable.texi: Use @command instead of @program. diff --git a/modules/fpending-tests b/modules/fpending-tests index 0338987a1..c6261a59a 100644 --- a/modules/fpending-tests +++ b/modules/fpending-tests @@ -1,10 +1,13 @@ Files: tests/test-fpending.c +tests/test-fpending.sh Depends-on: configure.ac: Makefile.am: -TESTS += test-fpending +TESTS += test-fpending.sh +TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@' check_PROGRAMS += test-fpending +MOSTLYCLEANFILES += test-fpending.t diff --git a/tests/test-fpending.sh b/tests/test-fpending.sh new file mode 100755 index 000000000..636af25a7 --- /dev/null +++ b/tests/test-fpending.sh @@ -0,0 +1,12 @@ +#!/bin/sh + +tmpfile= +trap 'rm -fr $tmpfile' 1 2 3 15 + +tmpfile=test-fpending.t + +./test-fpending${EXEEXT} > $tmpfile || exit 1 + +rm -fr $tmpfile + +exit 0