diff options
| author | James Clarke <jrtc27@jrtc27.com> | 2016-10-11 19:08:45 +0100 |
|---|---|---|
| committer | Ian Lance Taylor <iant@golang.org> | 2016-10-11 21:52:37 +0000 |
| commit | e1fc292500aa70c265937aebad00ac010031cbaf (patch) | |
| tree | 63a9aec599c8e30fdb284de5c784d8b829428e7d /src/debug/elf/file_test.go | |
| parent | 35220534d5edbbbcd0eed59133bcfae54d140287 (diff) | |
| download | go-e1fc292500aa70c265937aebad00ac010031cbaf.tar.xz | |
debug/elf: add sparc64 relocations
Change-Id: I1a2504ad9ca8607588d2d366598115fe360435b5
Reviewed-on: https://go-review.googlesource.com/30870
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'src/debug/elf/file_test.go')
| -rw-r--r-- | src/debug/elf/file_test.go | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/debug/elf/file_test.go b/src/debug/elf/file_test.go index b189219a55..f1e28a0671 100644 --- a/src/debug/elf/file_test.go +++ b/src/debug/elf/file_test.go @@ -492,6 +492,25 @@ var relocationTests = []relocationTest{ }, }, { + "testdata/go-relocation-test-gcc620-sparc64.obj", + []relocationTestEntry{ + {0, &dwarf.Entry{ + Offset: 0xb, + Tag: dwarf.TagCompileUnit, + Children: true, + Field: []dwarf.Field{ + {Attr: dwarf.AttrProducer, Val: "GNU C11 6.2.0 20160914 -mcpu=v9 -g -fstack-protector-strong", Class: dwarf.ClassString}, + {Attr: dwarf.AttrLanguage, Val: int64(12), Class: dwarf.ClassConstant}, + {Attr: dwarf.AttrName, Val: "hello.c", Class: dwarf.ClassString}, + {Attr: dwarf.AttrCompDir, Val: "/tmp", Class: dwarf.ClassString}, + {Attr: dwarf.AttrLowpc, Val: uint64(0x0), Class: dwarf.ClassAddress}, + {Attr: dwarf.AttrHighpc, Val: int64(0x2c), Class: dwarf.ClassConstant}, + {Attr: dwarf.AttrStmtList, Val: int64(0), Class: dwarf.ClassLinePtr}, + }, + }}, + }, + }, + { "testdata/go-relocation-test-gcc493-mips64le.obj", []relocationTestEntry{ {0, &dwarf.Entry{ |
