From 02328153520b10d6252064ef18d5eeb214f55824 Mon Sep 17 00:00:00 2001 From: Benny Siegert Date: Wed, 11 Apr 2018 12:38:04 +0200 Subject: [PATCH] net/http: skip a test on netbsd-arm TestServerDuplicateBackgroundRead has been causing crashes on the netbsd-arm-bsiegert builder, with the system becoming completely unresponsive (probably deadlocked). Skip this test while the crash is under investigation. Upstream bug report is http://gnats.netbsd.org/53173. Change-Id: Ib48f19005cf2cbba8a27e75e689c2acb025d8870 Reviewed-on: https://go-review.googlesource.com/106295 Run-TryBot: Tobias Klauser TryBot-Result: Gobot Gobot Reviewed-by: Tobias Klauser --- src/net/http/serve_test.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/net/http/serve_test.go b/src/net/http/serve_test.go index e40bbc5575..05e31ef1e4 100644 --- a/src/net/http/serve_test.go +++ b/src/net/http/serve_test.go @@ -5629,6 +5629,11 @@ func runTimeSensitiveTest(t *testing.T, durations []time.Duration, test func(t * // Issue 18535: test that the Server doesn't try to do a background // read if it's already done one. func TestServerDuplicateBackgroundRead(t *testing.T) { + if runtime.GOOS == "netbsd" && runtime.GOARCH == "arm" { + // http://gnats.netbsd.org/53173 + t.Skip("skipping to avoid crash") + } + setParallel(t) defer afterTest(t) -- 2.48.1