summaryrefslogtreecommitdiff
path: root/tests/test-fpending.sh
diff options
context:
space:
mode:
authorEric Blake <ebb9@byu.net>2007-10-09 08:09:48 -0600
committerEric Blake <ebb9@byu.net>2007-10-09 08:09:48 -0600
commitc116e7501e246cec2ffee3582e5ed9728b21c7a8 (patch)
tree28c30346a978341a7d1a325db7ebc8a65fdbccb3 /tests/test-fpending.sh
parent1891796c1e2a58609b7dcbffcd3e637cd53052c0 (diff)
downloadgnulib-c116e7501e246cec2ffee3582e5ed9728b21c7a8.tar.gz
Silence test-fpending.
* modules/fpending-tests (Files): Add wrapper script. * tests/test-fpending.sh: New file. Signed-off-by: Eric Blake <ebb9@byu.net>
Diffstat (limited to 'tests/test-fpending.sh')
-rwxr-xr-xtests/test-fpending.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/test-fpending.sh b/tests/test-fpending.sh
new file mode 100755
index 0000000000..636af25a7a
--- /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