From b4b1d528f7d1db77448a389776ecd5c95da2084a Mon Sep 17 00:00:00 2001 From: Brian Norris Date: Fri, 2 Nov 2012 19:37:20 -0700 Subject: [PATCH] bench: send timings to stdout, not stderr --- bench.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bench.sh b/bench.sh index a42fee7..8337ab3 100755 --- a/bench.sh +++ b/bench.sh @@ -37,7 +37,7 @@ function run_test { echo "*******************************" echo "Re-running test for timing data" echo "*******************************" - time ${RUN} ${t} ${ARGS} > /dev/null 2>&1 + (time ${RUN} ${t} ${ARGS} > /dev/null 2>&1) 2>&1 echo echo "Test done; sleeping for a few seconds" echo -- 2.34.1