go: net/http: TestClientTimeout* failures with "missing timeout substring" on Windows
#!watchflakes
post <- goos == "windows" && pkg == "net/http" && test ~ `^TestClientTimeout.*` && `missing timeout substring`
2020-12-09T01:34:53-ae9b442/windows-arm-zx2c4 2020-12-07T17:19:41-7f9a2bc/windows-arm-zx2c4 2020-12-03T02:35:36-da54dfb/windows-arm-zx2c4 2020-12-02T20:17:57-2d0258d/windows-arm-zx2c4
--- FAIL: TestClientTimeout_h1 (0.20s)
client_test.go:1277: error string = "context deadline exceeded"; missing timeout substring
--- FAIL: TestClientTimeout_h2 (0.20s)
client_test.go:1277: error string = "context deadline exceeded"; missing timeout substring
FAIL
FAIL net/http 43.328s
About this issue
- Original URL
- State: open
- Created 4 years ago
- Comments: 18 (13 by maintainers)
Commits related to this issue
- net/http: reduce TestClientTimeout_h{1,2} latency The test had been setting an arbitrary 200ms timeout to allow the server's handler to set up before timing out. That is not only potentially flaky on... — committed to golang/go by bcmills 3 years ago
- net/http: skip TestClientTimeout_h{1,2} on windows/arm and windows/arm64 These tests are empirically flaky on the windows/arm and windows/arm64 builders, with a consistent (but rare) failure mode. T... — committed to golang/go by bcmills 2 years ago
- net/http: skip TestClientTimeout_Headers_h{1,2} on windows/arm and windows/arm64 This extends the skip added in CL 375635 to the "_Headers" variant of the test, since we have observed similar failure... — committed to golang/go by bcmills 2 years ago
- net/http: skip TestClientTimeout_h{1,2} on windows/arm and windows/arm64 These tests are empirically flaky on the windows/arm and windows/arm64 builders, with a consistent (but rare) failure mode. T... — committed to jproberts/go by bcmills 2 years ago
- net/http: skip TestClientTimeout_Headers_h{1,2} on windows/arm and windows/arm64 This extends the skip added in CL 375635 to the "_Headers" variant of the test, since we have observed similar failure... — committed to jproberts/go by bcmills 2 years ago
- net/http: skip Get flakes in TestClientTimeout tests on windows/arm4 There is already a skip in case of a later failure in the same test on these platforms. Skip the failure if it occurs earlier too.... — committed to golang/go by bcmills 2 years ago
Oh, the latest log shows
"GO_TEST_TIMEOUT_SCALE=3"
, so looks like it has been deployed.So I’m not quite sure…