mirror of
https://github.com/golang/go
synced 2024-11-19 14:24:47 -07:00
cmd/link: skip TestFieldOverlap on Plan 9
TestSizes has been added in CL 50170. This test is failing on Plan 9 because executables don't have a DWARF symbol table. Fixes #21480. Change-Id: I51079abdc18ad944617bdbcfe2dad970a0cea0f2 Reviewed-on: https://go-review.googlesource.com/56210 Run-TryBot: David du Colombier <0intro@gmail.com> Reviewed-by: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
parent
e0545faf27
commit
8127dbf76a
@ -241,6 +241,10 @@ func main() {
|
||||
}
|
||||
|
||||
func TestFieldOverlap(t *testing.T) {
|
||||
if runtime.GOOS == "plan9" {
|
||||
t.Skip("skipping on plan9; no DWARF symbol table in executables")
|
||||
}
|
||||
|
||||
// This test grew out of issue 21094, where specific sudog<T> DWARF types
|
||||
// had elem fields set to values instead of pointers.
|
||||
const prog = `
|
||||
|
Loading…
Reference in New Issue
Block a user