changeset 9320:cbd2c0478638

Silence test-fpending. * modules/fpending-tests (Files): Add wrapper script. * tests/test-fpending.sh: New file. Signed-off-by: Eric Blake <ebb9@byu.net>
author Eric Blake <ebb9@byu.net>
date Tue, 09 Oct 2007 08:09:48 -0600
parents d6c555bc447f
children c25260956dfa
files ChangeLog modules/fpending-tests tests/test-fpending.sh
diffstat 3 files changed, 25 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- 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
@@ -1177,7 +1183,7 @@
 	* 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
@@ -1307,8 +1313,8 @@
 	* 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.
 
--- 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
new file mode 100755
--- /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