summaryrefslogtreecommitdiff
path: root/source3/script
diff options
context:
space:
mode:
Diffstat (limited to 'source3/script')
-rwxr-xr-xsource3/script/tests/test_pthreadpool.sh17
1 files changed, 17 insertions, 0 deletions
diff --git a/source3/script/tests/test_pthreadpool.sh b/source3/script/tests/test_pthreadpool.sh
new file mode 100755
index 0000000000..79e578effa
--- /dev/null
+++ b/source3/script/tests/test_pthreadpool.sh
@@ -0,0 +1,17 @@
+#!/bin/sh
+
+incdir=`dirname $0`/../../../testprogs/blackbox
+. $incdir/subunit.sh
+
+TESTPROG=$BINDIR/pthreadpooltest
+
+if [ ! -x $BINDIR/pthreadpooltest ] ; then
+ TESTPROG=/bin/true
+fi
+
+failed=0
+
+testit "pthreadpool" $VALGRIND $TESTPROG ||
+ failed=`expr $failed + 1`
+
+testok $0 $failed