File tree 2 files changed +7
-4
lines changed
2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -190,8 +190,8 @@ func TestParseGoLinknames(t *testing.T) {
190
190
` ,
191
191
wantDirectives : []GoLinkname {
192
192
{
193
- Reference : SymName {PkgPath : `testcase` , Name : `a` },
194
- Implementation : SymName {PkgPath : `other/package` , Name : `b.a` },
193
+ Reference : symbol. Name {PkgPath : `testcase` , Name : `a` },
194
+ Implementation : symbol. Name {PkgPath : `other/package` , Name : `b.a` },
195
195
},
196
196
},
197
197
}, {
@@ -206,8 +206,8 @@ func TestParseGoLinknames(t *testing.T) {
206
206
` ,
207
207
wantDirectives : []GoLinkname {
208
208
{
209
- Reference : SymName {PkgPath : `testcase` , Name : `a` },
210
- Implementation : SymName {PkgPath : `other/package` , Name : `*b.a` },
209
+ Reference : symbol. Name {PkgPath : `testcase` , Name : `a` },
210
+ Implementation : symbol. Name {PkgPath : `other/package` , Name : `*b.a` },
211
211
},
212
212
},
213
213
},
Original file line number Diff line number Diff line change @@ -151,6 +151,9 @@ var knownFails = map[string]failReason{
151
151
// These are new tests in Go 1.20
152
152
"fixedbugs/issue25897a.go" : {category : neverTerminates , desc : "does for { runtime.GC() }" },
153
153
"fixedbugs/issue54343.go" : {category : notApplicable , desc : "uses runtime.SetFinalizer() and runtime.GC()." },
154
+ "fixedbugs/issue57823.go" : {category : notApplicable , desc : "uses runtime.SetFinalizer() and runtime.GC()." },
155
+ "fixedbugs/issue59293.go" : {category : usesUnsupportedPackage , desc : "uses unsafe.SliceData() and unsafe.StringData()." },
156
+ "fixedbugs/issue43942.go" : {category : other , desc : "https://github.com/gopherjs/gopherjs/issues/1126" },
154
157
}
155
158
156
159
type failCategory uint8
You can’t perform that action at this time.
0 commit comments