1#!/bin/sh
2
3tmpfile=
4trap 'rm -fr $tmpfile' 1 2 3 15
5
6tmpfile=test-fpending.t
7
8./test-fpending${EXEEXT} > $tmpfile || exit 1
9
10rm -fr $tmpfile
11
12exit 0
13