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