diff options
| author | Clément Chigot <clement.chigot@atos.net> | 2018-11-02 10:09:30 +0100 |
|---|---|---|
| committer | Brad Fitzpatrick <bradfitz@golang.org> | 2018-11-02 16:12:08 +0000 |
| commit | 85525c56ab5fdb214fee70b4b4cce8700344258b (patch) | |
| tree | 03269d4c3ada020b50f570b445913dd4390bb350 /src/debug | |
| parent | 3a0d6091d64f0204d0942764d3356ac0572be0e3 (diff) | |
| download | go-85525c56ab5fdb214fee70b4b4cce8700344258b.tar.xz | |
all: skip unsupported tests on AIX
This commit skips tests which aren't yet supported on AIX.
nosplit.go is disabled because stackGuardMultiplier is increased for
syscalls.
Change-Id: Ib5ff9a4539c7646bcb6caee159f105ff8a160ad7
Reviewed-on: https://go-review.googlesource.com/c/146939
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src/debug')
| -rw-r--r-- | src/debug/elf/file_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debug/elf/file_test.go b/src/debug/elf/file_test.go index 11d8992b71..d7c1e9f800 100644 --- a/src/debug/elf/file_test.go +++ b/src/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 "android", "darwin", "js", "nacl", "plan9", "windows": + case "aix", "android", "darwin", "js", "nacl", "plan9", "windows": t.Skipf("cmd/link doesn't produce ELF binaries on %s", runtime.GOOS) } _ = net.ResolveIPAddr // force dynamic linkage |
