]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libgo/go/debug/elf/file_test.go
libgo: update to Go1.14beta1
[thirdparty/gcc.git] / libgo / go / debug / elf / file_test.go
index b826a0ff050e25321570ae673ae47622e19819b9..b13d13ebf09d5ed63cc827455029e3baf110eb5a 100644 (file)
@@ -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")
        }
 }