From: Jamie McClymont Date: Tue, 19 Dec 2017 00:14:41 +0000 (+1300) Subject: autobuild: fix quoting of --restrict-tests X-Git-Tag: talloc-2.1.11~68 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2245a4bf9ac0a5b561a3cc5c4c35c4ecb3485ea6;p=thirdparty%2Fsamba.git 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 Reviewed-by: Douglas Bagnall Reviewed-by: Andrew Bartlett Autobuild-User(master): Douglas Bagnall Autobuild-Date(master): Fri Jan 5 02:51:09 CET 2018 on sn-devel-144 --- diff --git a/script/autobuild.py b/script/autobuild.py index a4ad5441c51..40bace59ccb 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"),