summaryrefslogtreecommitdiff
path: root/source3/Makefile.in
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2006-08-30 16:58:29 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:39:00 -0500
commitf2b3143cf72c9d8f391b867353757770d1f0b012 (patch)
treef5d575590ce00eef1b17b96d6625016dfb3a9f36 /source3/Makefile.in
parentbc28b5c7008e5df45fbd6bf413d8177e8ba7c367 (diff)
downloadsamba-f2b3143cf72c9d8f391b867353757770d1f0b012.tar.gz
samba-f2b3143cf72c9d8f391b867353757770d1f0b012.tar.bz2
samba-f2b3143cf72c9d8f391b867353757770d1f0b012.zip
r17934: allow srcdir != builddir for 'make test'
(This used to be commit 70f223554922947a17e81f1002b184db879a2195)
Diffstat (limited to 'source3/Makefile.in')
-rw-r--r--source3/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in
index 9b6e9569ad..017a216d8b 100644
--- a/source3/Makefile.in
+++ b/source3/Makefile.in
@@ -1834,11 +1834,11 @@ test_pam_modules: pam_modules
##
test: all torture timelimit
@echo Running Test suite
- @sh ./script/tests/selftest.sh ${selftest_prefix}/st all "${smbtorture4_path}"
+ @sh $(srcdir)/script/tests/selftest.sh ${selftest_prefix}/st all "${smbtorture4_path}"
valgrindtest: all torture timelimit
@echo Running Test suite with valgrind
@NMBD_VALGRIND="xterm -n smbd -e valgrind -q --db-attach=yes --num-callers=30" \
SMBD_VALGRIND="xterm -n smbd -e valgrind -q --db-attach=yes --num-callers=30" \
VALGRIND="valgrind -q --num-callers=30 --log-file=${selftest_prefix}/st/valgrind.log" \
- ./script/tests/selftest.sh ${selftest_prefix}/st all "${smbtorture4_path}"
+ $(srcdir)/script/tests/selftest.sh ${selftest_prefix}/st all "${smbtorture4_path}"