Silence test-fpending.
authorEric Blake <ebb9@byu.net>
Tue, 9 Oct 2007 14:09:48 +0000 (08:09 -0600)
committerEric Blake <ebb9@byu.net>
Tue, 9 Oct 2007 14:09:48 +0000 (08:09 -0600)
* modules/fpending-tests (Files): Add wrapper script.
* tests/test-fpending.sh: New file.

Signed-off-by: Eric Blake <ebb9@byu.net>
ChangeLog
modules/fpending-tests
tests/test-fpending.sh [new file with mode: 0755]

index 0033feb..bb9a664 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2007-10-09  Eric Blake  <ebb9@byu.net>
+
+       Silence test-fpending.
+       * modules/fpending-tests (Files): Add wrapper script.
+       * tests/test-fpending.sh: New file.
+
 2007-10-09  Bruno Haible  <bruno@clisp.org>
 
        * MODULES.html.sh (func_module): Don't create a hyperlink for
 2007-10-09  Bruno Haible  <bruno@clisp.org>
 
        * MODULES.html.sh (func_module): Don't create a hyperlink for
        * doc/functions/floorf.texi: Mention the 'floorf' module.
 
 2007-10-04  Benoit Sigoure  <tsuna@lrde.epita.fr>
        * doc/functions/floorf.texi: Mention the 'floorf' module.
 
 2007-10-04  Benoit Sigoure  <tsuna@lrde.epita.fr>
-            Bruno Haible  <bruno@clisp.org>
+           Bruno Haible  <bruno@clisp.org>
 
        Advertise for the Git server instead of the CVS server.
        * doc/gnulib-intro.texi (Steady Development): Mention the Git
 
        Advertise for the Git server instead of the CVS server.
        * doc/gnulib-intro.texi (Steady Development): Mention the Git
        * lib/fseeko.c (rpl_fseeko): Likewise.
 
 2007-10-03  Bruno Haible  <bruno@clisp.org>
        * lib/fseeko.c (rpl_fseeko): Likewise.
 
 2007-10-03  Bruno Haible  <bruno@clisp.org>
-            Jim Meyering  <jim@meyering.net>
-            Eric Blake  <ebb9@byu.net>
+           Jim Meyering  <jim@meyering.net>
+           Eric Blake  <ebb9@byu.net>
 
        * doc/relocatable.texi: Use @command instead of @program.
 
 
        * doc/relocatable.texi: Use @command instead of @program.
 
index 0338987..c6261a5 100644 (file)
@@ -1,10 +1,13 @@
 Files:
 tests/test-fpending.c
 Files:
 tests/test-fpending.c
+tests/test-fpending.sh
 
 Depends-on:
 
 configure.ac:
 
 Makefile.am:
 
 Depends-on:
 
 configure.ac:
 
 Makefile.am:
-TESTS += test-fpending
+TESTS += test-fpending.sh
+TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@'
 check_PROGRAMS += test-fpending
 check_PROGRAMS += test-fpending
+MOSTLYCLEANFILES += test-fpending.t
diff --git a/tests/test-fpending.sh b/tests/test-fpending.sh
new file mode 100755 (executable)
index 0000000..636af25
--- /dev/null
@@ -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