aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/tests/gen/getmntinfo_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/tests/gen/getmntinfo_test.c')
-rw-r--r--lib/libc/tests/gen/getmntinfo_test.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/libc/tests/gen/getmntinfo_test.c b/lib/libc/tests/gen/getmntinfo_test.c
index 183fa84ed0e6..17b3e99a88f0 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,