summaryrefslogtreecommitdiff
path: root/tests/test-fpending.sh
diff options
context:
space:
mode:
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 0000000..636af25
--- /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