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"
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to