use test scripts for performing tests
[barvinok.git] / check_pwqp.sh.in
blob383f900d64aaf60605574cf67fcd6e612d2a8bd6
1 #!/bin/sh
3 EXEEXT="@EXEEXT@"
4 top_srcdir="@top_srcdir@"
6 for i in "$top_srcdir"/tests/pwqp/*; do
7 if test -f $i; then
8 echo $i;
9 ./barvinok_bound$EXEEXT -T -r30 < $i || exit;
10 echo $i | ./test_bound$EXEEXT -q -r30 || exit;
11 ./barvinok_summate$EXEEXT -T -r30 < $i || exit;
13 done
14 echo "$top_srcdir"/tests/pwqp/hong1.pwqp --iterate
15 ./barvinok_bound$EXEEXT --iterate -T -r30 < \
16 "$top_srcdir"/tests/pwqp/hong1.pwqp || exit