The branch main has been updated by markj:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=34b696e41259e41ae3ac61a539bd152d3afb73ae

commit 34b696e41259e41ae3ac61a539bd152d3afb73ae
Author:     Mark Johnston <ma...@freebsd.org>
AuthorDate: 2023-03-25 19:09:48 +0000
Commit:     Mark Johnston <ma...@freebsd.org>
CommitDate: 2023-03-30 23:35:59 +0000

    acl tests: Serialize
    
    Some of these tests import a ZFS pool with a hard-coded name, so they
    cannot run in parallel.
    
    MFC after:      1 week
---
 tests/sys/acl/Makefile | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/tests/sys/acl/Makefile b/tests/sys/acl/Makefile
index abc505efe90b..0f2bc98b787b 100644
--- a/tests/sys/acl/Makefile
+++ b/tests/sys/acl/Makefile
@@ -23,7 +23,9 @@ TAP_TESTS_SH+=        03
 TAP_TESTS_SH+= 04
 
 .for t in ${TAP_TESTS_SH}
-TEST_METADATA.$t+=     required_user="root"
+# Tests hard-code a ZFS pool name of "acltools" and so cannot run in parallel.
+TEST_METADATA.$t+=     required_user="root" \
+                       is_exclusive=true
 .endfor
 
 _ACL_PROGS=            getfacl setfacl

Reply via email to