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 dad71022bd.

PR:		259969
MFC after:	1 week
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Mark Johnston 2022-01-14 14:58:56 -05:00
parent fe453891d7
commit 7bd2df8c82

View file

@ -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);