diff options
author | Martin Pool <mbp@samba.org> | 2001-11-14 04:03:49 +0000 |
---|---|---|
committer | Martin Pool <mbp@samba.org> | 2001-11-14 04:03:49 +0000 |
commit | 4e71905d85a10fac91d0c7429f5ca6026188cc3f (patch) | |
tree | 8f151626a06e7299434efc4e51253061d0197ac8 | |
parent | 1b579da9ddb4fbdcdd60ed1b50ca52b6fa1e523e (diff) | |
download | samba-4e71905d85a10fac91d0c7429f5ca6026188cc3f.tar.gz samba-4e71905d85a10fac91d0c7429f5ca6026188cc3f.tar.bz2 samba-4e71905d85a10fac91d0c7429f5ca6026188cc3f.zip |
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)
-rw-r--r-- | source3/Makefile.in | 16 |
1 files 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. |