mirror of
https://git.savannah.gnu.org/git/gnulib.git
synced 2025-08-16 01:22:18 +03:00
* modules/fpending-tests (Files): Add wrapper script. * tests/test-fpending.sh: New file. Signed-off-by: Eric Blake <ebb9@byu.net>
13 lines
149 B
Bash
Executable File
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
|