X-Git-Url: http://plrg.eecs.uci.edu/git/?p=satune.git;a=blobdiff_plain;f=src%2FScripts%2Frunbench.sh;h=44e52bfc6c077db49636863f9e5a84e1589e870e;hp=9affb0bd2660f86df2417061d11e8edf797db9e7;hb=8b6e2584186a0f9bfd7b9678d99e92e2ea1a5584;hpb=8ae6061f7eae5614e9f8bf1ccd9ad80bef9cd768 diff --git a/src/Scripts/runbench.sh b/src/Scripts/runbench.sh index 9affb0b..44e52bf 100755 --- a/src/Scripts/runbench.sh +++ b/src/Scripts/runbench.sh @@ -4,7 +4,6 @@ # ./runbench.sh [nqueens] [timeout] [tuner.conf] # ./runbench.sh [sudoku-csolver] [timeout] [tuner.conf] # ./runbench.sh [killerSudoku] [timeout] [tuner.conf] -set -e if [ "$#" -lt 3 ]; then echo "Illegal number of argument" @@ -20,6 +19,13 @@ for d in $DUMP; do if [[ $d = *$1* ]]; then echo "Running: ./run.sh tunerrun "."$d $2 $3 out.out" ./run.sh tunerrun "."$d $2 $3 out.out + echo "Return code: $?" + if [ $? -eq 141 ]; then #Dump info when SAT Solver gets killed by OS .... + echo "Satune got out of memory" + echo "deserializing $d ..." + echo "SAT Solving time: 400000000.0" + echo "CSOLVER solve time: 400000000.0" + fi echo "Best tuner" fi done