Date: Fri, 23 Aug 2019 05:25:22 +0000 (UTC) From: Li-Wen Hsu <lwhsu@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r351416 - head/lib/libc/tests/gen Message-ID: <201908230525.x7N5PMFa012419@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: lwhsu Date: Fri Aug 23 05:25:21 2019 New Revision: 351416 URL: https://svnweb.freebsd.org/changeset/base/351416 Log: 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 Modified: head/lib/libc/tests/gen/getmntinfo_test.c Modified: head/lib/libc/tests/gen/getmntinfo_test.c ============================================================================== --- head/lib/libc/tests/gen/getmntinfo_test.c Fri Aug 23 05:23:45 2019 (r351415) +++ head/lib/libc/tests/gen/getmntinfo_test.c Fri Aug 23 05:25:21 2019 (r351416) @@ -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,
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201908230525.x7N5PMFa012419>