use test scripts for performing tests
[barvinok.git] / check_iscc.sh.in
blob8d3333969a6ff042f6a3c321295f19de48c46477
1 #!/bin/sh
3 EXEEXT="@EXEEXT@"
4 top_srcdir="@top_srcdir@"
6 for i in "$top_srcdir"/tests/iscc/*; do
7 if test -f $i; then
8 echo $i;
9 ./iscc$EXEEXT < $i || exit;
11 done