summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2007-10-02 16:13:30 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:31:06 -0500
commit5c5acae0eee9fb113ac6817eb8a164551a1cb117 (patch)
tree505f66993fca57b73b7d1744de70ea2eca819132
parenta2bbf608d21ff8de129aae726a426eac5d65a67f (diff)
downloadsamba-5c5acae0eee9fb113ac6817eb8a164551a1cb117.tar.gz
samba-5c5acae0eee9fb113ac6817eb8a164551a1cb117.tar.bz2
samba-5c5acae0eee9fb113ac6817eb8a164551a1cb117.zip
r25470: use --immediate like in samba4 to get more usefull output
metze (This used to be commit f5b089370a4a8e23d656276d06febb041729743d)
-rw-r--r--source3/Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in
index 3713908373..16199446c2 100644
--- a/source3/Makefile.in
+++ b/source3/Makefile.in
@@ -2106,18 +2106,18 @@ SELFTEST = $(PERL) $(samba4srcdir)/selftest/selftest.pl --prefix=${selftest_pref
##
test: all torture timelimit
@echo Running Test suite
- @$(SELFTEST) --socket-wrapper $(TESTS)
+ @$(SELFTEST) --socket-wrapper --immediate $(TESTS)
htmltest: all torture timelimit
@echo Running Test suite
- @$(SELFTEST) --socket-wrapper --format=html $(TESTS)
+ @$(SELFTEST) --socket-wrapper --format=html --immediate $(TESTS)
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" \
- $(SELFTEST) --socket-wrapper
+ $(SELFTEST) --immediate --socket-wrapper $(TESTS)
gdbtest: all torture timelimit
SMBD_VALGRIND="xterm -n smbd -e $(srcdir)/script/gdb_run " \