Commit state of repository at time of OOPSLA 2015 submission.
[satcheck.git] / benchmarks / cdschecker / msqueue / bench.sh
1 #!/bin/bash
2 source ../path.sh
3 for i in 1 2 3 4 5 6 7 8
4 do
5 echo size= $i
6 cat ms-queue_simple.c.in | sed s/PROBLEMSIZE/$i/ > ms-queue_simple.c
7 gcc ms-queue_simple.c -O3 -I$CDSCHECKERDIR/include -L$CDSCHECKERDIR -lmodel -o ms-queue_simple.o
8 export LD_LIBRARY_PATH=$CDSCHECKERDIR
9 time ./ms-queue_simple.o
10 done