summaryrefslogtreecommitdiff
path: root/libgo/go/debug/elf/file_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/debug/elf/file_test.go')
-rw-r--r--libgo/go/debug/elf/file_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/libgo/go/debug/elf/file_test.go b/libgo/go/debug/elf/file_test.go
index b826a0ff050..b13d13ebf09 100644
--- a/libgo/go/debug/elf/file_test.go
+++ b/libgo/go/debug/elf/file_test.go
@@ -784,7 +784,7 @@ func TestCompressedSection(t *testing.T) {
func TestNoSectionOverlaps(t *testing.T) {
// Ensure cmd/link outputs sections without overlaps.
switch runtime.GOOS {
- case "aix", "android", "darwin", "js", "nacl", "plan9", "windows":
+ case "aix", "android", "darwin", "js", "plan9", "windows":
t.Skipf("cmd/link doesn't produce ELF binaries on %s", runtime.GOOS)
}
_ = net.ResolveIPAddr // force dynamic linkage
@@ -818,6 +818,6 @@ func TestIssue10996(t *testing.T) {
"0000")
_, err := NewFile(bytes.NewReader(data))
if err == nil {
- t.Fatalf("opening invalid ELF file unexpectedly suceeded")
+ t.Fatalf("opening invalid ELF file unexpectedly succeeded")
}
}