X-Git-Url: http://git.liburcu.org/?p=urcu.git;a=blobdiff_plain;f=runtests.sh;h=981aef15fe25545b09dc3d74849703e8c60e539a;hp=4ce18d7e40e5d1f965a543ea3b3222ac8626183e;hb=ec817b748bf0004a2948937b7d04cd26c106598a;hpb=bdbcf417e553b2eec9bb9a2c5a646dab77c8530c diff --git a/runtests.sh b/runtests.sh index 4ce18d7..981aef1 100755 --- a/runtests.sh +++ b/runtests.sh @@ -1,9 +1,10 @@ #!/bin/sh -#add urcu mb - -for a in test_urcu test_urcu_mb test_qsbr test_rwlock test_perthreadlock +for a in test_urcu_gc test_urcu_gc_mb test_urcu test_urcu_mb \ + test_urcu_lgc test_qsbr_lgc test_urcu_lgc_mb \ + test_qsbr test_qsbr_gc test_rwlock test_perthreadlock \ test_mutex; do - echo Executing $a - ./${a} $* + echo "./${a} $*" | tee -a runall.detail.log + /usr/bin/time --append --output runall.detail.log ./${a} $* done +