1
0
mirror of https://github.com/golang/go synced 2024-11-24 11:40:16 -07:00

cmd/link: skip TestSizes on Plan 9

TestSizes has been added in CL 55551. This test is
failing on Plan 9 because executables don't have
a DWARF symbol table.

Fixes #21453.

Change-Id: I560611b49aea5417e8c5ac0cec6c7882bd9f8335
Reviewed-on: https://go-review.googlesource.com/55692
Run-TryBot: David du Colombier <0intro@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Martin Möhrmann <moehrmann@google.com>
This commit is contained in:
David du Colombier 2017-08-15 11:33:18 +02:00
parent 58cb8a3c8f
commit 583a941d4e

View File

@ -194,6 +194,10 @@ func findMembers(rdr *dwarf.Reader) (map[string]bool, error) {
}
func TestSizes(t *testing.T) {
if runtime.GOOS == "plan9" {
t.Skip("skipping on plan9; no DWARF symbol table in executables")
}
// DWARF sizes should never be -1.
// See issue #21097
const prog = `