From 63f8b1fc04b58d74c9ca11631411493e4a85ae64 Mon Sep 17 00:00:00 2001 From: Dmitrii Kuvaiskii Date: Mon, 2 Sep 2024 00:49:56 -0700 Subject: [PATCH] [tests] Increase timeout of `fork06` LTP test Previously, `fork06` LTP test had a default timeout of 30 seconds, which translated to 60 seconds under AddressSanitizer builds (due to scaling factor of 2). However, our new Jenkins CI is based on wimpy VMs, and the default timeout of 60 is not enough for ASan CI jobs anymore. Signed-off-by: Dmitrii Kuvaiskii --- libos/test/ltp/ltp.cfg | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libos/test/ltp/ltp.cfg b/libos/test/ltp/ltp.cfg index ebc04378ec..9195858e20 100644 --- a/libos/test/ltp/ltp.cfg +++ b/libos/test/ltp/ltp.cfg @@ -551,6 +551,10 @@ skip = yes [fork05] skip = yes +# performs 1,000 forks, which may be slow on ASan builds and wimpy VMs +[fork06] +timeout = 60 + # sometimes fails with "x/100 children didn't read correctly from an inheritted fd" [fork07] skip = yes