diff options
| author | Aram Hăvărneanu <aram@mgk.ro> | 2014-07-09 12:48:55 +0200 |
|---|---|---|
| committer | Aram Hăvărneanu <aram@mgk.ro> | 2014-07-09 12:48:55 +0200 |
| commit | 29aac3d91bc0ecc1aa5c03321cc0549dda436a4e (patch) | |
| tree | 7c06820cadee2080b6d50500f20f53f3a2fdb2e1 /src/pkg/debug/plan9obj | |
| parent | 9c3141145a4bb241bef6d3aec5d332451d6d63c7 (diff) | |
| download | go-29aac3d91bc0ecc1aa5c03321cc0549dda436a4e.tar.xz | |
debug/plan9obj: fix test build
LGTM=0intro, dave
R=dave, 0intro
CC=golang-codereviews
https://golang.org/cl/106560044
Diffstat (limited to 'src/pkg/debug/plan9obj')
| -rw-r--r-- | src/pkg/debug/plan9obj/file_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/debug/plan9obj/file_test.go b/src/pkg/debug/plan9obj/file_test.go index 96186d8156..cfd7a61d1c 100644 --- a/src/pkg/debug/plan9obj/file_test.go +++ b/src/pkg/debug/plan9obj/file_test.go @@ -18,7 +18,7 @@ type fileTest struct { var fileTests = []fileTest{ { "testdata/386-plan9-exec", - FileHeader{Magic386, 0x324, 0x14, 4}, + FileHeader{Magic386, 0x324, 0x14, 4, 0x1000, 32}, []*SectionHeader{ {"text", 0x4c5f, 0x20}, {"data", 0x94c, 0x4c7f}, @@ -29,7 +29,7 @@ var fileTests = []fileTest{ }, { "testdata/amd64-plan9-exec", - FileHeader{MagicAMD64, 0x618, 0x13, 8}, + FileHeader{MagicAMD64, 0x618, 0x13, 8, 0x200000, 40}, []*SectionHeader{ {"text", 0x4213, 0x28}, {"data", 0xa80, 0x423b}, |
