verify: new macro 'assume'
[gnulib.git] / tests / test-tsearch.sh
1 #!/bin/sh
2
3 tmpfiles=""
4 trap 'rm -fr $tmpfiles' 1 2 3 15
5
6 tmpfiles="$tmpfiles t-tsearch.out"
7 ./test-tsearch${EXEEXT} > t-tsearch.out 2>&1
8 test $? = 0 || { cat t-tsearch.out 1>&2; rm -f $tmpfiles; exit 1; }
9
10 rm -f $tmpfiles
11
12 exit 0