From 4e71905d85a10fac91d0c7429f5ca6026188cc3f Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Wed, 14 Nov 2001 04:03:49 +0000 Subject: Too much of samba depends on finding files in their installed locations, so we can't do "make check" yet, only "make installcheck". (This used to be commit 7d8610c4fed555bf478dad793c84fbaf5b3c86ff) --- source3/Makefile.in | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/source3/Makefile.in b/source3/Makefile.in index 1576101b48..b958c52fef 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -811,11 +811,17 @@ Makefile: $(srcdir)/Makefile.in config.status test_prefix=/tmp/test-samba # Run regression suite using the external "satyr" framework check: - -rm -rf $(test_prefix)/lib - mkdir $(test_prefix)/lib -p ./testdir - PATH=$(builddir)/bin:$(PATH) \ - SATYR_SUITEDIR=../testsuite/build_farm/ prefix=$(test_prefix) \ - testdir=./testdir $(SHELL) satyr + @echo "sorry, samba self-test without installation does not work yet" + @echo "Please try specifying a scratch directory to" + @echo " ./configure --prefix DIR" + @echo "then run \"make install installcheck\"" + exit 1 + +# -rm -rf $(test_prefix)/lib +# mkdir $(test_prefix)/lib -p ./testdir +# PATH=$(builddir)/bin:$(PATH) \ +# SATYR_SUITEDIR=../testsuite/build_farm/ prefix=$(test_prefix) \ +# testdir=./testdir $(SHELL) satyr # Run regression suite on the installed version. -- cgit