Commit | Line | Data |
---|---|---|
5a4dc6a8 MD |
1 | #!/bin/sh |
2 | ||
f8cbb9da LJ |
3 | for a in test_urcu_gc test_urcu_signal_gc test_urcu_mb_gc test_urcu_qsbr_gc \ |
4 | test_urcu_lgc test_urcu_signal_lgc test_urcu_mb_lgc test_urcu_qsbr_lgc \ | |
5 | test_urcu test_urcu_signal test_urcu_mb test_urcu_qsbr \ | |
31b598e0 | 6 | test_rwlock test_perthreadlock test_mutex; do |
80f79929 | 7 | echo "./${a} $*" | tee -a runall.detail.log |
383dac33 | 8 | /usr/bin/time -a -o runall.detail.log ./${a} $* |
5a4dc6a8 | 9 | done |
4bad7d45 | 10 |