Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/bricoler/bricoler.py
Original file line number Diff line number Diff line change
Expand Up @@ -849,7 +849,7 @@ class FreeBSDRegressionTestSuiteTask(FreeBSDVMBootTask):
default=os.cpu_count() // 2, # XXX-MJ duplicating the ncpus value
),
'tests': TaskParameter(
description="A space-separated list of test cases or test suites to run, "
description="A comma-separated list of test cases or test suites to run, "
"or the empty string to run all tests",
default="",
),
Expand All @@ -871,7 +871,7 @@ def run(self, ctx):
"-j", str(self.parallelism),
"-r", "/root/kyua.db",
"-o", "/root/kyua-report.txt",
self.tests
self.tests.replace(',', ' ')
]
vm.sendline(" ".join(cmd))
vm.wait_for_prompt(timeout=10*3600)
Expand Down