Fix: cast caa_cycles_t to unsigned long long
[urcu.git] / tests / benchmark / runtests.sh
CommitLineData
5a4dc6a8
MD
1#!/bin/sh
2
fce9a534
SM
3. ./common.sh
4
5log_file="runall.detail.log"
6
7# Check if time bin is non-empty
8if [ -n "$test_time_bin" ]; then
8d11f7cd 9 time_command="$test_time_bin"
fce9a534
SM
10else
11 time_command=""
12fi
13
f8cbb9da
LJ
14for 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 \
31b598e0 17 test_rwlock test_perthreadlock test_mutex; do
fce9a534 18 echo "./${a} $*" | tee -a "$log_file"
8d11f7cd 19 $time_command ./${a} $* 2>> $log_file
5a4dc6a8 20done
4bad7d45 21
This page took 0.032862 seconds and 4 git commands to generate.