Skip to content

Commit 7e9f420

Browse files
committed
test: delete bugs directory
It appears to be a vestigial holding ground for bugs. But we have an issue tracker, and #1909 is there and open. Change-Id: I912ff222a24c51fab483be0c67dad534f5a84488 Reviewed-on: https://go-review.googlesource.com/31859 Reviewed-by: Brad Fitzpatrick <[email protected]>
1 parent c63db15 commit 7e9f420

File tree

4 files changed

+3
-29
lines changed

4 files changed

+3
-29
lines changed

src/path/filepath/path_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1295,7 +1295,7 @@ func TestBug3486(t *testing.T) { // https://golang.org/issue/3486
12951295
if err != nil {
12961296
t.Fatal(err)
12971297
}
1298-
bugs := filepath.Join(root, "bugs")
1298+
bugs := filepath.Join(root, "fixedbugs")
12991299
ken := filepath.Join(root, "ken")
13001300
seenBugs := false
13011301
seenKen := false
@@ -1310,7 +1310,7 @@ func TestBug3486(t *testing.T) { // https://golang.org/issue/3486
13101310
return filepath.SkipDir
13111311
case ken:
13121312
if !seenBugs {
1313-
t.Fatal("filepath.Walk out of order - ken before bugs")
1313+
t.Fatal("filepath.Walk out of order - ken before fixedbugs")
13141314
}
13151315
seenKen = true
13161316
}

test/bugs/bug395.go

Lines changed: 0 additions & 24 deletions
This file was deleted.

test/bugs/placeholder

Lines changed: 0 additions & 2 deletions
This file was deleted.

test/run.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ var (
5252

5353
// dirs are the directories to look for *.go files in.
5454
// TODO(bradfitz): just use all directories?
55-
dirs = []string{".", "ken", "chan", "interface", "syntax", "dwarf", "fixedbugs", "bugs"}
55+
dirs = []string{".", "ken", "chan", "interface", "syntax", "dwarf", "fixedbugs"}
5656

5757
// ratec controls the max number of tests running at a time.
5858
ratec chan bool

0 commit comments

Comments
 (0)