]> Cypherpunks repositories - gostls13.git/commit
os/exec: ignore context.Canceled errors in TestConcurrentExec
authorBryan C. Mills <bcmills@google.com>
Tue, 11 Jul 2023 14:08:48 +0000 (10:08 -0400)
committerGopher Robot <gobot@golang.org>
Tue, 11 Jul 2023 17:37:32 +0000 (17:37 +0000)
commitcb7a091d729eab75ccfdaeba5a0605f05addf422
tree1b9e3e0a5e92b2920d82052a3c17c87c0a52fc58
parent651869716a449a1868f5a5333796ab47482d7c65
os/exec: ignore context.Canceled errors in TestConcurrentExec

We cancel the Context to unblock the test as soon as all of the "exit"
processes have completed. If that happens to occur before all of the
"hang" processes have started, the Start calls may fail with
context.Canceled.

Since those errors are possible in normal operation of the test,
ignore them.

Fixes #61277.
Updates #61080.

Change-Id: I20db083ec89ca88eb085ceb2892b9f87f83705ac
Reviewed-on: https://go-review.googlesource.com/c/go/+/508755
TryBot-Result: Gopher Robot <gobot@golang.org>
Run-TryBot: Bryan Mills <bcmills@google.com>
Auto-Submit: Bryan Mills <bcmills@google.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
src/os/exec/exec_test.go