aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorLi-Wen Hsu <lwhsu@FreeBSD.org>2019-08-23 05:25:21 +0000
committerLi-Wen Hsu <lwhsu@FreeBSD.org>2019-08-23 05:25:21 +0000
commit877b6cbba1cb2ed66df9671b392796cc01e62f12 (patch)
treee58e491e56778e5b9bb30d6b91074db031807d0c /lib
parent8651679a5c022f780d48a11d08e105a357e9fd75 (diff)
downloadsrc-877b6cbba1cb2ed66df9671b392796cc01e62f12.tar.gz
src-877b6cbba1cb2ed66df9671b392796cc01e62f12.zip
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
Notes
Notes: svn path=/head/; revision=351416
Diffstat (limited to 'lib')
-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,