X-Git-Url: https://git.lttng.org/?p=urcu.git;a=blobdiff_plain;f=tests%2Fbenchmark%2Fruntests-batch.sh;h=3d295fb9c8bf835867fc3f9c60ce0b07fc29a372;hp=2da1401b15771c91e5e76090161027a91108aeca;hb=8d11f7cd74968f5baffdbfde8b38d3197ef6865d;hpb=1f2b013ddbde8634c3b3eda921970e37a21ba297 diff --git a/tests/benchmark/runtests-batch.sh b/tests/benchmark/runtests-batch.sh index 2da1401..3d295fb 100755 --- a/tests/benchmark/runtests-batch.sh +++ b/tests/benchmark/runtests-batch.sh @@ -6,7 +6,7 @@ log_file="runall.detail.log" # Check if time bin is non-empty if [ -n "$test_time_bin" ]; then - time_command="$test_time_bin -a -o $log_file" + time_command="$test_time_bin" else time_command="" fi @@ -14,6 +14,6 @@ fi #for a in test_urcu_gc test_urcu_gc_mb test_urcu_qsbr_gc; do for a in test_urcu_gc; do echo "./${a} $*" | tee -a "$log_file" - $time_command ./${a} $* + $time_command ./${a} $* 2>> $log_file done