aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/system/mkdir_test.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-12-07 17:31:10 +0900
committerOphestra <cat@gensokyo.uk>2025-12-07 17:31:10 +0900
commit1b17ccda914de78a88e1edbb42ce70d963d4b5a2 (patch)
treebc82be23e45591f55b716e0d846e415dca7bac16 /internal/system/mkdir_test.go
parent7c6fc1128b89ebfc22adc52bac1fdb9205e69150 (diff)
internal/system: optional op check parallelism
The PipeWire Op check cannot be made parallel due to the OS interaction. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/system/mkdir_test.go')
-rw-r--r--internal/system/mkdir_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/system/mkdir_test.go b/internal/system/mkdir_test.go
index e8ffde2a..e5d97b3a 100644
--- a/internal/system/mkdir_test.go
+++ b/internal/system/mkdir_test.go
@@ -10,7 +10,7 @@ import (
func TestMkdirOp(t *testing.T) {
t.Parallel()
- checkOpBehaviour(t, []opBehaviourTestCase{
+ checkOpBehaviour(t, 0, []opBehaviourTestCase{
{"mkdir", 0xbeef, 0xff, &mkdirOp{User, "/tmp/hakurei.0/f2f3bcd492d0266438fa9bf164fe90d9", 0711, false}, []stub.Call{
call("verbose", stub.ExpectArgs{[]any{"ensuring directory", &mkdirOp{User, "/tmp/hakurei.0/f2f3bcd492d0266438fa9bf164fe90d9", 0711, false}}}, nil, nil),
call("mkdir", stub.ExpectArgs{"/tmp/hakurei.0/f2f3bcd492d0266438fa9bf164fe90d9", os.FileMode(0711)}, nil, stub.UniqueError(2)),