autobuild: fix quoting of --restrict-tests
authorJamie McClymont <jamiemcclymont@catalyst.net.nz>
Tue, 19 Dec 2017 00:14:41 +0000 (13:14 +1300)
committerDouglas Bagnall <dbagnall@samba.org>
Fri, 5 Jan 2018 01:51:09 +0000 (02:51 +0100)
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

script/autobuild.py

index a4ad5441c51e4a53ac5450ffef7e70c0eefdecb1..40bace59ccb954d7544031cb0734195594c4e198 100755 (executable)
@@ -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"),