summaryrefslogtreecommitdiff
path: root/tests/test-fpending.sh
blob: 4acd60a9f577f371b74873bc51540d5d0f7ba1ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

tmpfile=
trap 'rm -fr $tmpfile' HUP INT QUIT TERM

tmpfile=test-fpending.t

${CHECKER} ./test-fpending${EXEEXT} > $tmpfile || exit 1

rm -fr $tmpfile

exit 0