Commit | Line | Data |
---|---|---|
a813abf8 MD |
1 | #!/bin/sh |
2 | ||
fce9a534 SM |
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 | ||
f8cbb9da | 14 | #for a in test_urcu_gc test_urcu_gc_mb test_urcu_qsbr_gc; do |
657a89f1 | 15 | for a in test_urcu_gc; do |
fce9a534 SM |
16 | echo "./${a} $*" | tee -a "$log_file" |
17 | $time_command ./${a} $* | |
a813abf8 MD |
18 | done |
19 |