svn commit: r336617 - head/tests/sys/acl

Alan Somers asomers at FreeBSD.org
Sun Jul 22 21:00:13 UTC 2018


Author: asomers
Date: Sun Jul 22 21:00:11 2018
New Revision: 336617
URL: https://svnweb.freebsd.org/changeset/base/336617

Log:
  Temporarily disable the sys/acl/00 and sys/acl/02 tests
  
  These tests are failing due to PR 229930.  Unfortunately, TAP tests can't be
  marked as expected failures.
  
  PR:		229930
  Reported by:	Jenkins

Modified:
  head/tests/sys/acl/Makefile

Modified: head/tests/sys/acl/Makefile
==============================================================================
--- head/tests/sys/acl/Makefile	Sun Jul 22 20:02:14 2018	(r336616)
+++ head/tests/sys/acl/Makefile	Sun Jul 22 21:00:11 2018	(r336617)
@@ -14,9 +14,11 @@ ${PACKAGE}FILES+=	tools-posix.test
 
 SCRIPTS+=	run
 
-TAP_TESTS_SH+=	00
+# Disable 00 and 02 until they've been updated for setfacl's new behavior
+# PR 229930 tests/sys/acl/00:main fails in CI due to unexpected error message
+# TAP_TESTS_SH+=	00
+# TAP_TESTS_SH+=	02
 TAP_TESTS_SH+=	01
-TAP_TESTS_SH+=	02
 TAP_TESTS_SH+=	03
 TAP_TESTS_SH+=	04
 
@@ -30,8 +32,8 @@ _ACL_PROGS=		getfacl setfacl
 TEST_METADATA.$t+=	required_programs="perl zpool ${_ACL_PROGS}"
 .endfor
 
-.for t in 00 02
-TEST_METADATA.$t+=	required_programs="perl ${_ACL_PROGS}"
-.endfor
+# .for t in 00 02
+# TEST_METADATA.$t+=	required_programs="perl ${_ACL_PROGS}"
+# .endfor
 
 .include <bsd.test.mk>


More information about the svn-src-all mailing list