From: Brian Norris Date: Tue, 11 Dec 2012 08:44:08 +0000 (-0800) Subject: bench.sh: don't 'grep' output X-Git-Tag: oopsla2013-final~49 X-Git-Url: http://plrg.eecs.uci.edu/git/?p=model-checker-benchmarks.git;a=commitdiff_plain;h=82708472c7511ab11a613c010595ff1864b1c8ac bench.sh: don't 'grep' output Model-checker output is concise now, so don't trim it. --- diff --git a/bench.sh b/bench.sh index e74d5c3..e7efc6d 100755 --- a/bench.sh +++ b/bench.sh @@ -40,9 +40,7 @@ function run_test { echo "Running test ${COUNT} (${t}): logging to ${LOG}" echo "ARGS=${ARGS}" echo "*******************************" - time ${RUN} ${t} ${ARGS} > ${LOG} 2>&1 - echo - grep -A 2 "Number of executions" ${LOG} | tail -3 + time ${RUN} ${t} ${ARGS} 2>&1 | tee ${LOG} echo echo "Test done; sleeping for a few seconds" echo