X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=runtests.sh;h=3b06f8479fd6a38c57da75f20253660e27a168e5;hb=cfe854a04e7c6ff75c056a9f13402a1484d708a7;hp=d7f9c883033ab2a679f9bf7c45404969a4d7992a;hpb=9e31d0f0084e781405056c347aa4a8c53f676096;p=urcu.git diff --git a/runtests.sh b/runtests.sh index d7f9c88..3b06f84 100755 --- a/runtests.sh +++ b/runtests.sh @@ -1,7 +1,9 @@ #!/bin/sh -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_qsbr test_qsbr_gc test_rwlock test_perthreadlock \ test_mutex; do - ./${a} $* + echo "./${a} $*" | tee -a runall.detail.log + /usr/bin/time --append --output runall.detail.log ./${a} $* done