From 94c678cf19ca78330cbec1338167127964d3272a Mon Sep 17 00:00:00 2001 From: Peter Holm Date: Tue, 14 Sep 2021 07:50:26 +0000 Subject: stress2: A two second timeout is too short --- tools/test/stress2/testcases/mkfifo/mkfifo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/test/stress2/testcases/mkfifo/mkfifo.c b/tools/test/stress2/testcases/mkfifo/mkfifo.c index 6bd20d6679f9..caeb5e45310b 100644 --- a/tools/test/stress2/testcases/mkfifo/mkfifo.c +++ b/tools/test/stress2/testcases/mkfifo/mkfifo.c @@ -58,7 +58,7 @@ reader(void) { setproctitle("reader"); signal(SIGALRM, handler2); - alarm(2); + alarm(60); if ((fd = open(path, O_RDWR, 0600)) < 0) { unlink(path); err(1, "open(%s)", path); @@ -81,7 +81,7 @@ writer(void) { int fd; signal(SIGALRM, handler2); - alarm(2); + alarm(60); setproctitle("writer"); if ((fd = open(path, O_RDWR, 0600)) < 0) { -- cgit v1.2.3