]> Cypherpunks repositories - gostls13.git/commitdiff
net: re-enable TestVariousDeadlines on Plan 9
authormiller <millerresearch@gmail.com>
Wed, 1 Mar 2023 09:46:14 +0000 (09:46 +0000)
committerGopher Robot <gobot@golang.org>
Thu, 2 Mar 2023 22:28:37 +0000 (22:28 +0000)
After CL 470215 it should be safe to run this test on Plan 9.

Fixes #26945

Change-Id: I17880b696d2e91e6c4862fac05e6372f44e69b22
Reviewed-on: https://go-review.googlesource.com/c/go/+/472436
Reviewed-by: Bryan Mills <bcmills@google.com>
Auto-Submit: Bryan Mills <bcmills@google.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
TryBot-Result: Gopher Robot <gobot@golang.org>
Run-TryBot: Ian Lance Taylor <iant@google.com>

src/net/timeout_test.go

index 832f40f9a83e35f192e77029dc1e321184ce1e06..e4825269fb590e51ce57f829cc4f606d1b58a4e2 100644 (file)
@@ -909,10 +909,6 @@ func TestVariousDeadlines4Proc(t *testing.T) {
 }
 
 func testVariousDeadlines(t *testing.T) {
-       if runtime.GOOS == "plan9" {
-               t.Skip("skipping test on plan9; see golang.org/issue/26945")
-       }
-
        handler := func(ls *localServer, ln Listener) {
                for {
                        c, err := ln.Accept()