Description
What version of Go are you using (go version
)?
>> go version go version go1.14.6 linux/amd64
Does this issue reproduce with the latest release?
We haven't yet picked up 1.15, which cut like yesterday and it's an intermittent flake for us.
What operating system and processor architecture are you using (go env
)?
go env
Output
>> go version go version go1.14.6 linux/amd64
What did you do?
We are running our e2e tests with t.Parallel()
and -v
thru gotestsum
.
What did you expect to see?
gotestsum
uses test2json
to parse the build log output, and I expect to see passing test results for all of the tests run.
What did you see instead?
Action: pass
events are missing for typically 2 of the tests.
We were originally chasing this here (has links to richer logs): gotestyourself/gotestsum#141
To include some relevant context here, we see several test summaries that are interleaved with other output, which seems to trip up test2json
. Here are three from a single run (3 diff API versions):
Normal (what you'd normally see):
--- PASS: TestContainerExitingMsg (0.01s)
--- PASS: TestContainerExitingMsg/tcp (27.63s)
--- PASS: TestContainerExitingMsg/http (160.37s)
Weird (interleaved, but surfaces events properly):
--- PASS: TestContainerExitingMsg (0.00s)
+ Message: "Waiting for Envoys to receive Endpoints data.",
--- PASS: TestContainerExitingMsg/http (179.23s)
},
},
Annotations: nil,
--- PASS: TestContainerExitingMsg/tcp (194.07s)
Broken (interleaved with another test context switch, breaks things):
--- PASS: TestContainerExitingMsg (0.00s)
=== CONT TestBlueGreenRoute
kubelogs.go:201: I 01:01:58.381 webhook-98759d99-pfkgh [conversion/conversion.go:133] [serving-tests/blue-green-route-atsgeusz-q56cd] Converting [kind=Revision group=serving.knative.dev version=v1] to version serving.knative.dev/v1beta1
--- PASS: TestContainerExitingMsg/http (49.33s)
--- PASS: TestContainerExitingMsg/tcp (165.25s)
If I change the ordering of lines in this last section, I get the appropriate set of events.