60011744e67699f3eaaa88181257eec008a3d620
[urcu.git] / tests / benchmark / runtests.sh
1 #!/bin/sh
2
3 . ./common.sh
4
5 log_file="runall.detail.log"
6
7 # Check if time bin is non-empty
8 if [ -n "$test_time_bin" ]; then
9 time_command="$test_time_bin -a -o $log_file"
10 else
11 time_command=""
12 fi
13
14 for a in test_urcu_gc test_urcu_signal_gc test_urcu_mb_gc test_urcu_qsbr_gc \
15 test_urcu_lgc test_urcu_signal_lgc test_urcu_mb_lgc test_urcu_qsbr_lgc \
16 test_urcu test_urcu_signal test_urcu_mb test_urcu_qsbr \
17 test_rwlock test_perthreadlock test_mutex; do
18 echo "./${a} $*" | tee -a "$log_file"
19 $time_command ./${a} $*
20 done
21
This page took 0.032683 seconds and 3 git commands to generate.