From 477ecbd4987663b0c121d77fb72bce4f318ee7bb Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sat, 1 Sep 2007 02:33:00 +0000 Subject: r24861: Use absolute paths to make it easier to run the testsuite from the Samba3 source. (This used to be commit 022d5a43cedeb5cca7e4cf3424963e2180ec1f2f) --- source4/selftest/test_local.sh | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'source4/selftest/test_local.sh') diff --git a/source4/selftest/test_local.sh b/source4/selftest/test_local.sh index b3b8387f00..ad8a548529 100755 --- a/source4/selftest/test_local.sh +++ b/source4/selftest/test_local.sh @@ -1,12 +1,10 @@ #!/bin/sh -local_tests=`bin/smbtorture --list | grep "^LOCAL-" | xargs` - incdir=`dirname $0` . $incdir/test_functions.sh -for t in $local_tests; do - plantest "$t" none $VALGRIND bin/smbtorture $TORTURE_OPTIONS ncalrpc: $t "$*" +for t in `bin/smbtorture --list | grep "^LOCAL-" | xargs`; do + plantest "$t" none $VALGRIND $samba4bindir/smbtorture $TORTURE_OPTIONS ncalrpc: $t "$*" done -plantest "tdb stress" none $VALGRIND bin/tdbtorture +plantest "tdb stress" none $VALGRIND $samba4bindir/tdbtorture -- cgit