diff options
| author | Ophestra <cat@gensokyo.uk> | 2025-03-16 02:34:06 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2025-03-16 02:49:41 +0900 |
| commit | 1576fea8a33a165562deff6b0d8adda35ad62244 (patch) | |
| tree | 6c6b16176e1dd54f43330051f484adf381152ede /helper/cmd.go | |
| parent | ae522ab36473ab91f12af3b9d0ee0afced61c02c (diff) | |
helper: raise WaitDelay during tests
Helper runs very slowly with race detector. This prevents it from timing out.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'helper/cmd.go')
| -rw-r--r-- | helper/cmd.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helper/cmd.go b/helper/cmd.go index 4fe978a2..bfdd3484 100644 --- a/helper/cmd.go +++ b/helper/cmd.go @@ -62,7 +62,7 @@ func (h *helperCmd) Start() error { // Check for doubled Start calls before we defer failure cleanup. If the prior // call to Start succeeded, we don't want to spuriously close its pipes. if h.Cmd != nil && h.Cmd.Process != nil { - return errors.New("exec: already started") + return errors.New("helper: already started") } h.Env = slices.Grow(h.Env, 2) |
