summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
authorJamie McClymont <jamiemcclymont@catalyst.net.nz>2017-12-19 13:14:41 +1300
committerDouglas Bagnall <dbagnall@samba.org>2018-01-05 02:51:09 +0100
commit2245a4bf9ac0a5b561a3cc5c4c35c4ecb3485ea6 (patch)
tree260ffbea7e32065007938071f1863fff2679e605 /script
parent523bd03fd6d077a05ed4c60168d8511b5ad18ed6 (diff)
downloadsamba-2245a4bf9ac0a5b561a3cc5c4c35c4ecb3485ea6.tar.gz
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 <jamiemcclymont@catalyst.net.nz> Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Autobuild-User(master): Douglas Bagnall <dbagnall@samba.org> Autobuild-Date(master): Fri Jan 5 02:51:09 CET 2018 on sn-devel-144
Diffstat (limited to 'script')
-rwxr-xr-xscript/autobuild.py2
1 files changed, 1 insertions, 1 deletions
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"),