From 82708472c7511ab11a613c010595ff1864b1c8ac Mon Sep 17 00:00:00 2001 From: Brian Norris Date: Tue, 11 Dec 2012 00:44:08 -0800 Subject: [PATCH 1/1] bench.sh: don't 'grep' output Model-checker output is concise now, so don't trim it. --- bench.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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 -- 2.34.1