use test scripts for performing tests
[barvinok.git] / check_union.sh.in
blobdbe3f93ea4de0a93a7f357256084ada4b2d585f4
1 #!/bin/sh
3 EXEEXT="@EXEEXT@"
4 top_srcdir="@top_srcdir@"
6 for i in "$top_srcdir"/tests/ehrhart_union/*; do
7 if test -f $i; then
8 for spec in 'random' 'bf' 'df'; do
9 opt="--specialization=$spec $options";
10 echo $i $opt;
11 ./barvinok_union$EXEEXT -c $opt < $i || exit;
12 done
14 done