]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: skip TestG0StackOverflow on Android
authorAustin Clements <austin@google.com>
Sun, 8 Jul 2018 19:28:21 +0000 (15:28 -0400)
committerIan Lance Taylor <iant@golang.org>
Sun, 8 Jul 2018 19:59:58 +0000 (19:59 +0000)
This test is skipped on Linux and should be skipped on Android for the
same reason.

Change-Id: I753c4788d935bd58874554b455c0d5be2315b794
Reviewed-on: https://go-review.googlesource.com/122585
Run-TryBot: Austin Clements <austin@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
src/runtime/crash_test.go

index 5c255efd2603040b34ee580342f8690016cf33b0..2766b8850af33a0b4804cfb156166d8206caa4a1 100644 (file)
@@ -702,7 +702,7 @@ func TestG0StackOverflow(t *testing.T) {
        testenv.MustHaveExec(t)
 
        switch runtime.GOOS {
-       case "darwin", "dragonfly", "freebsd", "linux", "netbsd", "openbsd":
+       case "darwin", "dragonfly", "freebsd", "linux", "netbsd", "openbsd", "android":
                t.Skipf("g0 stack is wrong on pthread platforms (see golang.org/issue/26061)")
        }