public inbox for buildbot@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] Add missing comma (',') in make_single_test_suite_step
@ 2024-03-11 11:31 Mark Wielaard
  0 siblings, 0 replies; only message in thread
From: Mark Wielaard @ 2024-03-11 11:31 UTC (permalink / raw)
  To: buildbot; +Cc: Mark Wielaard

Without the comma between the strings it acts like string
concatenation instead of having two string elements in the array.
---
 builder/master.cfg | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/builder/master.cfg b/builder/master.cfg
index 5ea43cb7af01..1a569e4cd333 100644
--- a/builder/master.cfg
+++ b/builder/master.cfg
@@ -1202,7 +1202,7 @@ make_single_check_step = steps.Test(
         command=["make", "-k", "check"],
         name="make check")
 make_single_test_suite_step = steps.Test(
-        command=["make", "-k" "check"],
+        command=["make", "-k", "check"],
         name="make check",
         logfiles={"test-suite.log": "tests/test-suite.log"})
 # Same as make_check_step but with tests/test-suite.log recorded
-- 
2.44.0


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2024-03-11 11:31 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-11 11:31 [PATCH] Add missing comma (',') in make_single_test_suite_step Mark Wielaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).