Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 27 Sep 2023 11:01:52 GMT
From:      Peter Holm <pho@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 2b716e00cf3b - main - stress2: Extent timeout limit to avoid false positive errors
Message-ID:  <202309271101.38RB1qat038433@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by pho:

URL: https://cgit.FreeBSD.org/src/commit/?id=2b716e00cf3b59acbb5242f4b0695db84d2948af

commit 2b716e00cf3b59acbb5242f4b0695db84d2948af
Author:     Peter Holm <pho@FreeBSD.org>
AuthorDate: 2023-09-27 11:01:00 +0000
Commit:     Peter Holm <pho@FreeBSD.org>
CommitDate: 2023-09-27 11:01:00 +0000

    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 44c76f78b599..252629c04b90 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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202309271101.38RB1qat038433>