From 747ae3ada8fa4450ccb6a0cf44423a4d7a265bd9 Mon Sep 17 00:00:00 2001 From: Oliver Giles Date: Fri, 4 Jun 2021 15:26:23 +1200 Subject: [PATCH] abort test: use "sleep inf" instead of "yes" Sometimes yes can produce too much output too quickly and overwhelm the host. It is not relevant to testing the abort functionaliy. resolves #143 --- test/laminar-functional.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/laminar-functional.cpp b/test/laminar-functional.cpp index 06a6107..2512298 100644 --- a/test/laminar-functional.cpp +++ b/test/laminar-functional.cpp @@ -133,7 +133,7 @@ TEST_F(LaminarFixture, ParamsToEnv) { } TEST_F(LaminarFixture, Abort) { - defineJob("job1", "yes"); + defineJob("job1", "sleep inf"); auto req = client().runRequest(); req.setJobName("job1"); auto res = req.send();