From 2b716e00cf3b59acbb5242f4b0695db84d2948af Mon Sep 17 00:00:00 2001 From: Peter Holm Date: Wed, 27 Sep 2023 13:01:00 +0200 Subject: [PATCH] stress2: Extent timeout limit to avoid false positive errors --- tools/test/stress2/misc/newfs.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/test/stress2/misc/newfs.sh b/tools/test/stress2/misc/newfs.sh index 44c76f78b59..252629c04b9 100755 --- a/tools/test/stress2/misc/newfs.sh +++ b/tools/test/stress2/misc/newfs.sh @@ -78,8 +78,8 @@ for opt in -O1 -O2 -U -j; do done blocksize=$((blocksize * 2)) done - if [ $((`date '+%s'` - start)) -gt 1200 ]; then - echo "Timed out" + if [ $((`date '+%s'` - start)) -gt 1800 ]; then + echo "Timed out in $opt" s=4 break fi