From ea3124778b336fb29e279ad31bd3114fcc209d7d Mon Sep 17 00:00:00 2001 From: Benjamin Schaaf Date: Tue, 7 May 2019 10:30:11 +1000 Subject: [PATCH] Increase timeouts --- tests/vibe.core.process.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/vibe.core.process.d b/tests/vibe.core.process.d index eb184d9..840e8fe 100644 --- a/tests/vibe.core.process.d +++ b/tests/vibe.core.process.d @@ -62,7 +62,7 @@ void testStderr() auto procPipes = pipeProcess(["rdmd", "--eval", program], Redirect.stdin | Redirect.stderr); // Wait for rdmd to compile - sleep(1.seconds); + sleep(3.seconds); string output; auto outputTask = runTask({ @@ -138,7 +138,7 @@ void testIgnoreSigterm() assert(!procPipes.process.exited); // Give the program some time to compile and install the signal handler - sleep(2.seconds); + sleep(4.seconds); procPipes.process.kill(); procPipes.stdin.write("foo\n");