diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-05-05 11:13:16 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:16:31 -0500 |
commit | aed008c98988d70564f621c48b8ee51bdafaaf91 (patch) | |
tree | 14e375bf6df2e1e4c7d2798ba931a1adba6453cc /source4/build | |
parent | 72851111625b6d468f877d3463fc5037f3a1f036 (diff) | |
download | samba-aed008c98988d70564f621c48b8ee51bdafaaf91.tar.gz samba-aed008c98988d70564f621c48b8ee51bdafaaf91.tar.bz2 samba-aed008c98988d70564f621c48b8ee51bdafaaf91.zip |
r6617: Let --enable-developer imply --enable-socket-wrapper
Add socket-wrapper-enabled test target and use that by
default when the socket wrapper was included
(This used to be commit d3b0ad8b4b6f8ee80a9c77e1102960d51ced5a5f)
Diffstat (limited to 'source4/build')
-rw-r--r-- | source4/build/smb_build/makefile.pm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/source4/build/smb_build/makefile.pm b/source4/build/smb_build/makefile.pm index 3b36a94334..98d70f6c1c 100644 --- a/source4/build/smb_build/makefile.pm +++ b/source4/build/smb_build/makefile.pm @@ -150,9 +150,15 @@ pch_clean: basics: idl proto_exists -test: all +test: @DEFAULT_TEST_TARGET@ + +test-swrap: all + export SOCKET_WRAPPER_DIR=. ./script/tests/selftest.sh `pwd`/prefix-test +test-noswrap: all + ./script/tests/selftest.sh `pwd`/prefix-test + __EOD__ return $output; |