Refactor tests
[urcu.git] / tests / benchmark / runtests-batch.sh
index 3d295fb9c8bf835867fc3f9c60ce0b07fc29a372..0e5577b3cdc4a9cf3c783a6301d2ff997ac85d09 100755 (executable)
@@ -1,8 +1,23 @@
-#!/bin/sh
+#!/bin/bash
+
+source ../utils/tap.sh
+
+NUM_TESTS=1
+
+plan_tests     ${NUM_TESTS}
 
 . ./common.sh
 
-log_file="runall.detail.log"
+function cleanup()
+{
+       if [ x"$tmpfile" != x"" ]; then
+               rm -f $tmpfile
+       fi
+}
+
+tmpfile=
+trap cleanup SIGINT SIGTERM EXIT
+tmpfile=$(mktemp)
 
 # Check if time bin is non-empty
 if [ -n "$test_time_bin" ]; then
@@ -11,9 +26,10 @@ else
        time_command=""
 fi
 
+tmpfile=$(mktemp)
+
 #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} $* 2>> $log_file
+       okx $time_command -o $tmpfile ./${a} $*
+       diag "time: $(cat $tmpfile)"
 done
-
This page took 0.027462 seconds and 4 git commands to generate.