From 1ef320c329ebc4895060e7682547c7fcfb423e81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6nke=20Ludwig?= Date: Thu, 22 Aug 2019 09:40:21 +0200 Subject: [PATCH] Use a more robust way to self-execute the test binary. --- tests/issue-122-coalesced-sigchld.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/issue-122-coalesced-sigchld.d b/tests/issue-122-coalesced-sigchld.d index ef2822d..625cbd4 100644 --- a/tests/issue-122-coalesced-sigchld.d +++ b/tests/issue-122-coalesced-sigchld.d @@ -48,7 +48,7 @@ void main(string[] args) auto procs = new Process[](20); foreach (i, ref p; procs) { p = eventDriver.processes.spawn( - ["./test", targettime.stdTime.to!string], + [args[0], targettime.stdTime.to!string], ProcessStdinFile(ProcessRedirect.inherit), ProcessStdoutFile(ProcessRedirect.inherit), ProcessStderrFile(ProcessRedirect.inherit),