From 1b17ccda914de78a88e1edbb42ce70d963d4b5a2 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Sun, 7 Dec 2025 17:31:10 +0900 Subject: internal/system: optional op check parallelism The PipeWire Op check cannot be made parallel due to the OS interaction. Signed-off-by: Ophestra --- internal/system/acl_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal/system/acl_test.go') diff --git a/internal/system/acl_test.go b/internal/system/acl_test.go index f7829e24..70feaa8b 100644 --- a/internal/system/acl_test.go +++ b/internal/system/acl_test.go @@ -13,7 +13,7 @@ import ( func TestACLUpdateOp(t *testing.T) { t.Parallel() - checkOpBehaviour(t, []opBehaviourTestCase{ + checkOpBehaviour(t, 0, []opBehaviourTestCase{ {"apply aclUpdate", 0xbeef, 0xff, &aclUpdateOp{Process, "/proc/nonexistent", []acl.Perm{acl.Read, acl.Write, acl.Execute}}, []stub.Call{ call("verbose", stub.ExpectArgs{[]any{"applying ACL", &aclUpdateOp{Process, "/proc/nonexistent", []acl.Perm{acl.Read, acl.Write, acl.Execute}}}}, nil, nil), -- cgit v1.3.1