]> Cypherpunks repositories - gostls13.git/commitdiff
net: re-enable unixpacket tests on netbsd/386
authorTobias Klauser <tklauser@distanz.ch>
Sun, 9 Apr 2023 08:31:41 +0000 (10:31 +0200)
committerGopher Robot <gobot@golang.org>
Mon, 10 Apr 2023 17:30:27 +0000 (17:30 +0000)
The tests seem to work fine on netbsd/386 (NetBSD 9.3). This reverts CL
80756.

Updates #22927

Change-Id: I2235d69129aa81b43513a171834d058f47cd9933
Reviewed-on: https://go-review.googlesource.com/c/go/+/483395
Reviewed-by: Benny Siegert <bsiegert@gmail.com>
Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: David Chase <drchase@google.com>
Auto-Submit: Tobias Klauser <tobias.klauser@gmail.com>

src/net/platform_test.go

index 12be367b1a41a4bdfdfaba7132b7dbf635fd5ea2..71e90821cea5c92c5818ef430b4c06773c58976e 100644 (file)
@@ -57,11 +57,6 @@ func testableNetwork(network string) bool {
                switch runtime.GOOS {
                case "aix", "android", "darwin", "ios", "plan9", "windows":
                        return false
-               case "netbsd":
-                       // It passes on amd64 at least. 386 fails (Issue 22927). arm is unknown.
-                       if runtime.GOARCH == "386" {
-                               return false
-                       }
                }
        }
        switch net {