1
0
mirror of https://github.com/ohwgiles/laminar.git synced 2024-10-27 20:34:20 +00:00

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
This commit is contained in:
Oliver Giles 2021-06-04 15:26:23 +12:00
parent 9a5ccc70e3
commit 747ae3ada8

View File

@ -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();