Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 14 Jan 2022 20:39:28 GMT
From:      Mark Johnston <markj@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 7bd2df8c82e8 - main - Revert "Disable flaky test lib.libc.sys.setrlimit_test.setrlimit_stack"
Message-ID:  <202201142039.20EKdS8w087454@gitrepo.freebsd.org>

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

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

commit 7bd2df8c82e863396ae96ad4c43418c762e9f702
Author:     Mark Johnston <markj@FreeBSD.org>
AuthorDate: 2022-01-14 19:58:56 +0000
Commit:     Mark Johnston <markj@FreeBSD.org>
CommitDate: 2022-01-14 19:58:56 +0000

    Revert "Disable flaky test lib.libc.sys.setrlimit_test.setrlimit_stack"
    
    The stack gap implementation is disabled by default now, so the test
    passes.
    
    This reverts commit dad71022bd7a8f95ab2ba656bec61e2424a1c3c5.
    
    PR:             259969
    MFC after:      1 week
    Sponsored by:   The FreeBSD Foundation
---
 contrib/netbsd-tests/lib/libc/sys/t_setrlimit.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/contrib/netbsd-tests/lib/libc/sys/t_setrlimit.c b/contrib/netbsd-tests/lib/libc/sys/t_setrlimit.c
index d5c50155e6dd..6b90deab8f3f 100644
--- a/contrib/netbsd-tests/lib/libc/sys/t_setrlimit.c
+++ b/contrib/netbsd-tests/lib/libc/sys/t_setrlimit.c
@@ -550,9 +550,6 @@ ATF_TC_BODY(setrlimit_stack, tc)
 {
 	struct rlimit res;
 
-	if (atf_tc_get_config_var_as_bool_wd(tc, "ci", false))
-		atf_tc_skip("https://bugs.freebsd.org/259969");
-
 	/* Ensure soft limit is not bigger than hard limit */
 	res.rlim_cur = res.rlim_max = 4192256;
 	ATF_REQUIRE(setrlimit(RLIMIT_STACK, &res) == 0);



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