Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 29 Jun 2025 21:00:04 GMT
From:      Lexi Winter <ivy@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: bc6ec9642b5a - stable/14 - kyua: increase cleanup_timeout to 300s
Message-ID:  <202506292100.55TL042S004299@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/14 has been updated by ivy:

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

commit bc6ec9642b5a045fd0932fbbc9f73bd9564c1af3
Author:     Lexi Winter <ivy@FreeBSD.org>
AuthorDate: 2025-06-04 05:35:51 +0000
Commit:     Lexi Winter <ivy@FreeBSD.org>
CommitDate: 2025-06-29 20:59:50 +0000

    kyua: increase cleanup_timeout to 300s
    
    Test cleanup times out after 60 seconds, causing the test to fail if the
    cleanup hasn't finished in time.  This timeout should be configurable,
    but it currently is not.
    
    Several tests (e.g. bridge, pf) are now reaching this limit; as a
    workaround, increase the timeout to 300 seconds.
    
    Reviewed by:    igoro, kevans, des
    Approved by:    des (mentor), kevans (mentor)
    Differential Revision:  https://reviews.freebsd.org/D50499
    
    (cherry picked from commit 0e33211f911c906b47cd0c457a86372c4b5daf87)
---
 contrib/kyua/engine/scheduler.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/contrib/kyua/engine/scheduler.cpp b/contrib/kyua/engine/scheduler.cpp
index d4507a247323..bea9ed7601a6 100644
--- a/contrib/kyua/engine/scheduler.cpp
+++ b/contrib/kyua/engine/scheduler.cpp
@@ -86,11 +86,11 @@ using utils::optional;
 ///
 /// TODO(jmmv): This is here only for testing purposes.  Maybe we should expose
 /// this setting as part of the user_config.
-datetime::delta scheduler::cleanup_timeout(60, 0);
+datetime::delta scheduler::cleanup_timeout(300, 0);
 
 
 /// Timeout for the test case execenv cleanup operation.
-datetime::delta scheduler::execenv_cleanup_timeout(60, 0);
+datetime::delta scheduler::execenv_cleanup_timeout(300, 0);
 
 
 /// Timeout for the test case listing operation.



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