The branch, master has been updated via 2245a4b autobuild: fix quoting of --restrict-tests via 523bd03 source4/tests: typo in env name from 7a0a765 docs-xml: plain file URIs need three slashes
https://git.samba.org/?p=samba.git;a=shortlog;h=master - Log ----------------------------------------------------------------- commit 2245a4bf9ac0a5b561a3cc5c4c35c4ecb3485ea6 Author: Jamie McClymont <jamiemcclym...@catalyst.net.nz> Date: Tue Dec 19 13:14:41 2017 +1300 autobuild: fix quoting of --restrict-tests Currently, passing multiple tests causes those other than the first to be passed to make, causing failures. Signed-off-by: Jamie McClymont <jamiemcclym...@catalyst.net.nz> Reviewed-by: Douglas Bagnall <douglas.bagn...@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abart...@samba.org> Autobuild-User(master): Douglas Bagnall <dbagn...@samba.org> Autobuild-Date(master): Fri Jan 5 02:51:09 CET 2018 on sn-devel-144 commit 523bd03fd6d077a05ed4c60168d8511b5ad18ed6 Author: Jamie McClymont <jamiemcclym...@catalyst.net.nz> Date: Wed Jan 3 03:59:24 2018 +0000 source4/tests: typo in env name Signed-off-by: Jamie McClymont <jamiemcclym...@catalyst.net.nz> Reviewed-by: Douglas Bagnall <douglas.bagn...@catalyst.net.nz> Reviewed-by: Gary Lockyer <g...@catalyst.net.nz> ----------------------------------------------------------------------- Summary of changes: script/autobuild.py | 2 +- source4/selftest/tests.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) Changeset truncated at 500 lines: diff --git a/script/autobuild.py b/script/autobuild.py index a4ad544..40bace5 100755 --- a/script/autobuild.py +++ b/script/autobuild.py @@ -83,7 +83,7 @@ tasks = { "samba-test-only" : [ ("configure", "./configure.developer --with-selftest-prefix=./bin/ab --abi-check-disable" + samba_configure_params, "text/plain"), ("make", "make -j", "text/plain"), - ("test", "make test FAIL_IMMEDIATELY=1 TESTS=${TESTS}", "text/plain") ], + ("test", 'make test FAIL_IMMEDIATELY=1 TESTS="${TESTS}"',"text/plain") ], # Test cross-compile infrastructure "samba-xc" : [ ("configure-native", "./configure.developer --with-selftest-prefix=./bin/ab" + samba_configure_params, "text/plain"), diff --git a/source4/selftest/tests.py b/source4/selftest/tests.py index 755f0c9..91f8a5c 100755 --- a/source4/selftest/tests.py +++ b/source4/selftest/tests.py @@ -726,7 +726,7 @@ planoldpythontestsuite("ad_dc_ntvfs", # Want a selection of environments across the process models # for env in ["ad_dc_ntvfs:local", "ad_dc:local", - "fl2003dc:local", "fl2008rdc:local", + "fl2003dc:local", "fl2008r2dc:local", "promoted_dc:local"]: planoldpythontestsuite(env, "samba.tests.blackbox.smbcontrol") -- Samba Shared Repository