Temporarily skip sys.fs.tmpfs.times_test.{empty,non_empty} in CI

PR:		249362
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Li-Wen Hsu 2020-09-16 09:58:15 +00:00
parent dfe3db06bb
commit 6132212808
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=365793

View File

@ -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"