Move test programs to tests/ subdir
[urcu.git] / tests / runtests.sh
diff --git a/tests/runtests.sh b/tests/runtests.sh
new file mode 100755 (executable)
index 0000000..981aef1
--- /dev/null
@@ -0,0 +1,10 @@
+#!/bin/sh
+
+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 "./${a} $*" | tee -a runall.detail.log
+       /usr/bin/time --append --output runall.detail.log ./${a} $*
+done
+
This page took 0.022463 seconds and 4 git commands to generate.