commit | 7e27625e2556e6caedd35043247c98ecf819edba | [log] [tgz] |
---|---|---|
author | Russ Cox <rsc@golang.org> | Thu Jun 04 14:27:39 2015 -0400 |
committer | Russ Cox <rsc@golang.org> | Fri Jun 05 03:59:46 2015 +0000 |
tree | b00096f576617cca6ee3c7508ea4c338a2b1452e | |
parent | a9267db56abaa2ee68a27d78a5b12083f2a25a49 [diff] |
cmd/go, cmd/link: use "Go" not "GO" as ELF note identifier Change-Id: I038e892725836ab7718f7638e8ad5712953f2cb5 Reviewed-on: https://go-review.googlesource.com/10704 Reviewed-by: Ian Lance Taylor <iant@golang.org>
diff --git a/misc/cgo/testshared/shared_test.go b/misc/cgo/testshared/shared_test.go index f7a99af..09b159d 100644 --- a/misc/cgo/testshared/shared_test.go +++ b/misc/cgo/testshared/shared_test.go
@@ -399,7 +399,7 @@ abiHashNoteFound := false depsNoteFound := false for _, note := range notes { - if note.name != "GO\x00\x00" { + if note.name != "Go\x00\x00" { continue } switch note.tag {