Date: Wed, 16 Sep 2020 09:58:16 +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: r365793 - head/contrib/netbsd-tests/fs/tmpfs Message-ID: <202009160958.08G9wGiQ096220@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: lwhsu Date: Wed Sep 16 09:58:15 2020 New Revision: 365793 URL: https://svnweb.freebsd.org/changeset/base/365793 Log: Temporarily skip sys.fs.tmpfs.times_test.{empty,non_empty} in CI PR: 249362 Sponsored by: The FreeBSD Foundation Modified: head/contrib/netbsd-tests/fs/tmpfs/t_times.sh Modified: head/contrib/netbsd-tests/fs/tmpfs/t_times.sh ============================================================================== --- head/contrib/netbsd-tests/fs/tmpfs/t_times.sh Wed Sep 16 07:53:15 2020 (r365792) +++ head/contrib/netbsd-tests/fs/tmpfs/t_times.sh Wed Sep 16 09:58:15 2020 (r365793) @@ -36,6 +36,10 @@ empty_head() { atf_set "require.user" "root" } empty_body() { + if [ "$(atf_config_get ci false)" = "true" ]; then + atf_skip "https://bugs.freebsd.org/249362" + fi + test_mount atf_check -s eq:0 -o empty -e empty touch a @@ -68,6 +72,10 @@ non_empty_head() { atf_set "require.user" "root" } non_empty_body() { + if [ "$(atf_config_get ci false)" = "true" ]; then + atf_skip "https://bugs.freebsd.org/249362" + fi + test_mount echo foo >b || atf_fail "Non-empty creation failed"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202009160958.08G9wGiQ096220>