aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorLi-Wen Hsu <lwhsu@FreeBSD.org>2020-09-16 09:58:15 +0000
committerLi-Wen Hsu <lwhsu@FreeBSD.org>2020-09-16 09:58:15 +0000
commit6132212808e8dccedc9e5d85fea4390c2f38059a (patch)
treef4137d63c462250bf364eb551adc48b637ef780d /contrib
parentdfe3db06bb42d143f3f508f730dd87de3815f623 (diff)
downloadsrc-6132212808e8dccedc9e5d85fea4390c2f38059a.tar.gz
src-6132212808e8dccedc9e5d85fea4390c2f38059a.zip
Temporarily skip sys.fs.tmpfs.times_test.{empty,non_empty} in CI
PR: 249362 Sponsored by: The FreeBSD Foundation
Notes
Notes: svn path=/head/; revision=365793
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/netbsd-tests/fs/tmpfs/t_times.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/contrib/netbsd-tests/fs/tmpfs/t_times.sh b/contrib/netbsd-tests/fs/tmpfs/t_times.sh
index f83dfe8f5929..c09d1aa6d654 100755
--- a/contrib/netbsd-tests/fs/tmpfs/t_times.sh
+++ b/contrib/netbsd-tests/fs/tmpfs/t_times.sh
@@ -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"