diff options
| author | Ophestra <cat@gensokyo.uk> | 2025-12-07 17:31:10 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2025-12-07 17:31:10 +0900 |
| commit | 1b17ccda914de78a88e1edbb42ce70d963d4b5a2 (patch) | |
| tree | bc82be23e45591f55b716e0d846e415dca7bac16 /internal/system/xhost_test.go | |
| parent | 7c6fc1128b89ebfc22adc52bac1fdb9205e69150 (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/xhost_test.go')
| -rw-r--r-- | internal/system/xhost_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/system/xhost_test.go b/internal/system/xhost_test.go index 75ad5b9b..72ecf2d6 100644 --- a/internal/system/xhost_test.go +++ b/internal/system/xhost_test.go @@ -11,7 +11,7 @@ import ( func TestXHostOp(t *testing.T) { t.Parallel() - checkOpBehaviour(t, []opBehaviourTestCase{ + checkOpBehaviour(t, 0, []opBehaviourTestCase{ {"xcbChangeHosts revert", 0xbeef, hst.EX11, xhostOp("chronos"), []stub.Call{ call("verbosef", stub.ExpectArgs{"inserting entry %s to X11", []any{xhostOp("chronos")}}, nil, nil), call("xcbChangeHosts", stub.ExpectArgs{xcb.HostMode(xcb.HostModeInsert), xcb.Family(xcb.FamilyServerInterpreted), "localuser\x00chronos"}, nil, stub.UniqueError(1)), |
