From 9c4694fc11dfe929c16c9f5093a783f4e56f0b39 Mon Sep 17 00:00:00 2001 From: Nicholas Wilson Date: Tue, 31 Dec 2024 10:48:37 +0800 Subject: [PATCH] [run.d] add space between commands for failed unittest (#20628) --- compiler/test/run.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/test/run.d b/compiler/test/run.d index 208193cf1d..efc5e3d9df 100755 --- a/compiler/test/run.d +++ b/compiler/test/run.d @@ -199,7 +199,7 @@ Options: { const string name = target.filename ? target.normalizedTestName - : "`unit` tests: " ~ (cast(string)unitTestRunnerCommand) ~ join(target.args, " "); + : "`unit` tests: " ~ (cast(string)unitTestRunnerCommand) ~ " " ~ join(target.args, " "); writeln(">>> TARGET FAILED: ", name); synchronized failedTargets ~= name;