1
0
mirror of https://git.savannah.gnu.org/git/gnulib.git synced 2025-08-16 01:22:18 +03:00
Files
gnulib/tests/test-fpending.sh
Eric Blake c116e7501e Silence test-fpending.
* modules/fpending-tests (Files): Add wrapper script.
* tests/test-fpending.sh: New file.

Signed-off-by: Eric Blake <ebb9@byu.net>
2007-10-09 08:09:48 -06:00

13 lines
149 B
Bash
Executable File

#!/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