diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-01-09 13:59:48 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-01-09 06:13:21 +0100 |
commit | 12cb6cd44a3f2cee73974b9d845178d63b3dbc4b (patch) | |
tree | 1b38445422b44fb220070b1b142460c959b7c7a1 /source3/m4 | |
parent | 356f7989eb7114a5149d777882cf741322f34dfc (diff) | |
download | samba-12cb6cd44a3f2cee73974b9d845178d63b3dbc4b.tar.gz samba-12cb6cd44a3f2cee73974b9d845178d63b3dbc4b.tar.bz2 samba-12cb6cd44a3f2cee73974b9d845178d63b3dbc4b.zip |
s3-build: Remove unused hooks to set smbtorture4 and test args
These were left around after the selftest.pl script was introduced.
Andrew Bartlett
Autobuild-User: Andrew Bartlett <abartlet@samba.org>
Autobuild-Date: Mon Jan 9 06:13:21 CET 2012 on sn-devel-104
Diffstat (limited to 'source3/m4')
-rw-r--r-- | source3/m4/check_path.m4 | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/source3/m4/check_path.m4 b/source3/m4/check_path.m4 index be31782f2b..f0b98c9d53 100644 --- a/source3/m4/check_path.m4 +++ b/source3/m4/check_path.m4 @@ -27,64 +27,6 @@ AC_ARG_WITH(selftest-prefix, esac ]) -################################################# -# set shrdir for 'make test' -selftest_shrdir="" -AC_SUBST(selftest_shrdir) -AC_ARG_WITH(selftest-shrdir, -[AS_HELP_STRING([--with-selftest-shrdir=DIR], [The share directory that make test will be run against ($selftest_shrdir)])], -[ case "$withval" in - yes|no) - AC_MSG_WARN([--with-selftest-shrdir called without argument - will use default]) - ;; - * ) - selftest_shrdir="-s $withval" - ;; - esac -]) - -################################################# -# set path of samba4's smbtorture -smbtorture4_path="" -AC_SUBST(smbtorture4_path) -smbtorture4_option="" -AC_SUBST(smbtorture4_option) -AC_ARG_WITH(smbtorture4_path, -[AS_HELP_STRING([--with-smbtorture4-path=PATH], [The path to a samba4 smbtorture for make test (none)])], -[ case "$withval" in - yes|no) - AC_MSG_ERROR([--with-smbtorture4-path should take a path]) - ;; - * ) - smbtorture4_path="$withval" - if test -z "$smbtorture4_path" -a ! -f $smbtorture4_path; then - AC_MSG_ERROR(['$smbtorture_path' does not exist!]) - fi - smbtorture4_option="-t $withval" - ;; - esac -]) - -################################################# -# set custom conf for make test -selftest_custom_conf="" -AC_SUBST(selftest_custom_conf) -AC_ARG_WITH(selftest_custom_conf, -[AS_HELP_STRING([--with-selftest-custom-conf=PATH], [An optional custom smb.conf that is included in the server smb.conf during make test(none)])], -[ case "$withval" in - yes|no) - AC_MSG_ERROR([--with-selftest-custom-conf should take a path]) - ;; - * ) - selftest_custom_conf="$withval" - if test -z "$selftest_custom_conf" -a ! -f $selftest_custom_conf; then - AC_MSG_ERROR(['$selftest_custom_conf' does not exist!]) - fi - selftest_custom_conf="-c $withval" - ;; - esac -]) - ## check for --enable-debug first before checking CFLAGS before ## so that we don't mix -O and -g debug=no |