Commit | Line | Data |
---|---|---|
5a4dc6a8 MD |
1 | #!/bin/sh |
2 | ||
3e1c1b9a | 3 | for a in test_urcu_gc test_urcu_gc_mb test_urcu test_urcu_mb \ |
321e29d9 | 4 | test_urcu_lgc test_qsbr_lgc test_urcu_lgc_mb \ |
3e1c1b9a | 5 | test_qsbr test_qsbr_gc test_rwlock test_perthreadlock \ |
bdbcf417 | 6 | test_mutex; do |
80f79929 | 7 | echo "./${a} $*" | tee -a runall.detail.log |
8 | /usr/bin/time --append --output runall.detail.log ./${a} $* | |
5a4dc6a8 | 9 | done |
4bad7d45 | 10 |