Skip to content

Commit e0db4d4

Browse files
committed
tests: Triage test failures new to Go 1.11.
1 parent 64ad028 commit e0db4d4

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

tests/run.go

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,13 @@ var knownFails = map[string]failReason{
105105
"fixedbugs/issue22083.go": {category: requiresSourceMapSupport}, // Technically, added in Go 1.9.2.
106106
"fixedbugs/issue22660.go": {category: notApplicable, desc: "test of gc compiler, uses os/exec.Command"},
107107
"fixedbugs/issue23305.go": {desc: "GopherJS fails to compile println(0xffffffff), maybe because 32-bit arch"},
108+
109+
// These are new tests in Go 1.11.
110+
"fixedbugs/issue21221.go": {category: usesUnsupportedPackage, desc: "uses unsafe package and compares nil pointers"},
111+
"fixedbugs/issue22662.go": {desc: "line directives not fully working. Error: got /private/var/folders/b8/66r1c5856mqds1mrf2tjtq8w0000gn/T:1; want ??:1"},
112+
"fixedbugs/issue22662b.go": {category: usesUnsupportedPackage, desc: "os/exec.Command unsupported"},
113+
"fixedbugs/issue23188.go": {desc: "incorrect order of evaluation of index operations"},
114+
"fixedbugs/issue24547.go": {desc: "incorrect computing method sets with shadowed methods"},
108115
}
109116

110117
type failCategory uint8

0 commit comments

Comments
 (0)