From 877b6cbba1cb2ed66df9671b392796cc01e62f12 Mon Sep 17 00:00:00 2001 From: Li-Wen Hsu Date: Fri, 23 Aug 2019 05:25:21 +0000 Subject: [PATCH] lib.libc.gen.getmntinfo_test.getmntinfo_test is unstable since 8/20, skip it in CI env temporarily for more offline diagnosis PR: 240049 Sponsored by: The FreeBSD Foundation --- lib/libc/tests/gen/getmntinfo_test.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/libc/tests/gen/getmntinfo_test.c b/lib/libc/tests/gen/getmntinfo_test.c index 183fa84ed0e..17b3e99a88f 100644 --- a/lib/libc/tests/gen/getmntinfo_test.c +++ b/lib/libc/tests/gen/getmntinfo_test.c @@ -57,6 +57,9 @@ ATF_TC_BODY(getmntinfo_test, tc) int nmnts; struct statfs *mntinfo; + if (atf_tc_get_config_var_as_bool_wd(tc, "ci", false)) + atf_tc_skip("https://bugs.freebsd.org/240049"); + /* Test bogus mode */ nmnts = getmntinfo(&mntinfo, 199); ATF_REQUIRE_MSG(nmnts == 0 && errno == EINVAL,