]> Cypherpunks repositories - gostls13.git/commitdiff
os: remove unused issueNo field
authorTobias Klauser <tklauser@distanz.ch>
Tue, 16 Apr 2024 08:06:09 +0000 (10:06 +0200)
committerGopher Robot <gobot@golang.org>
Tue, 16 Apr 2024 17:30:45 +0000 (17:30 +0000)
It's no longer set since CL 31118.

Change-Id: Ibe77b1454b5e7fd02eaed432f04cf993f53791fc
Reviewed-on: https://go-review.googlesource.com/c/go/+/579135
Auto-Submit: Tobias Klauser <tobias.klauser@gmail.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
Reviewed-by: Carlos Amedee <carlos@golang.org>
src/os/os_windows_test.go

index 956ab07f51b84b063002accda08fe3b9ecb79faf..f4ee076b81ce5d61fde20e3e9eb30f2ec6a0a0ce 100644 (file)
@@ -96,7 +96,6 @@ func TestSameWindowsFile(t *testing.T) {
 type dirLinkTest struct {
        name         string
        mklink       func(link, target string) error
-       issueNo      int // correspondent issue number (for broken tests)
        isMountPoint bool
 }
 
@@ -135,11 +134,6 @@ func testDirLinks(t *testing.T, tests []dirLinkTest) {
                        continue
                }
 
-               if test.issueNo > 0 {
-                       t.Logf("skipping broken %q test: see issue %d", test.name, test.issueNo)
-                       continue
-               }
-
                fi1, err := os.Stat(link)
                if err != nil {
                        t.Errorf("failed to stat link %v: %v", link, err)