sigprocmask: Fix configuration failure on Solaris 10 (regr. 2020-07-25).
[gnulib.git] / tests / test-tsearch.sh
blobdfc80eed5f508592d0d3527a3e1d7cafd216d39b
1 #!/bin/sh
3 tmpfiles=""
4 trap 'rm -fr $tmpfiles' 1 2 3 15
6 tmpfiles="$tmpfiles t-tsearch.out"
7 ${CHECKER} ./test-tsearch${EXEEXT} > t-tsearch.out 2>&1
8 test $? = 0 || { cat t-tsearch.out 1>&2; rm -f $tmpfiles; exit 1; }
10 rm -f $tmpfiles
12 exit 0