Imported Upstream version 4.0.0+dfsg1
[abartlet/samba-debian.git] / source3 / script / tests / test_pthreadpool.sh
index 79e578effa9f2925558abffe94de824906c137c7..b1c7c6da11cffcc448d2ce821e8746f4f1088ceb 100755 (executable)
@@ -3,15 +3,18 @@
 incdir=`dirname $0`/../../../testprogs/blackbox
 . $incdir/subunit.sh
 
-TESTPROG=$BINDIR/pthreadpooltest
-
 if [ ! -x $BINDIR/pthreadpooltest ] ; then
-    TESTPROG=/bin/true
+    # Some machines don't have /bin/true, simulate it
+    cat >$BINDIR/pthreadpooltest <<EOF
+#!/bin/sh
+exit 0
+EOF
+    chmod +x $BINDIR/pthreadpooltest
 fi
 
 failed=0
 
-testit "pthreadpool" $VALGRIND $TESTPROG ||
+testit "pthreadpool" $VALGRIND $BINDIR/pthreadpooltest ||
        failed=`expr $failed + 1`
 
 testok $0 $failed