summaryrefslogtreecommitdiff
path: root/tests/test-fpending.sh
blob: 636af25a7a095f4691cbad3997f5c7b1c8a05a1e (plain)
1
2
3
4
5
6
7
8
9
10
11
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