runtests: Make path of time binary configurable
[urcu.git] / tests / runtests-batch.sh
index 6c2340d18b2d880df36e87417e134137b5ec5d86..2da1401b15771c91e5e76090161027a91108aeca 100755 (executable)
@@ -1,8 +1,19 @@
 #!/bin/sh
 
+. ./common.sh
+
+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"
+else
+       time_command=""
+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 runall.detail.log
-       /usr/bin/time -a -o runall.detail.log ./${a} $*
+       echo "./${a} $*" | tee -a "$log_file"
+       $time_command ./${a} $*
 done
 
This page took 0.022227 seconds and 4 git commands to generate.