aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/crash_cgo_test.go
diff options
context:
space:
mode:
authorBrad Fitzpatrick <bradfitz@golang.org>2017-04-25 02:46:06 +0000
committerBrad Fitzpatrick <bradfitz@golang.org>2017-04-25 04:33:00 +0000
commit16271b8b52b059b892165d7dd32ecd4ff1070347 (patch)
tree6978b45767bfdc23c6b8cec78e90a9ce8bb4e52e /src/runtime/crash_cgo_test.go
parent9f98e49825e38267dc5e91b827cb1db3291ff3bb (diff)
downloadgo-16271b8b52b059b892165d7dd32ecd4ff1070347.tar.gz
go-16271b8b52b059b892165d7dd32ecd4ff1070347.zip
runtime: ignore TestCgoPprofPIE test failures on Alpine
Updates #19938 Updates #18243 Change-Id: Ib6e704c0a5d596bdfaa6493902d2528bec55bf16 Reviewed-on: https://go-review.googlesource.com/41628 Reviewed-by: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'src/runtime/crash_cgo_test.go')
-rw-r--r--src/runtime/crash_cgo_test.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/runtime/crash_cgo_test.go b/src/runtime/crash_cgo_test.go
index 2c3fe39f2c..252313ab67 100644
--- a/src/runtime/crash_cgo_test.go
+++ b/src/runtime/crash_cgo_test.go
@@ -282,6 +282,10 @@ func testCgoPprof(t *testing.T, buildArg, runArg string) {
got, err := testEnv(exec.Command(exe, runArg)).CombinedOutput()
if err != nil {
+ if testenv.Builder() == "linux-arm64-alpine" {
+ // See Issue 18243 and Issue 19938.
+ t.Skipf("Skipping failing test on Alpine (golang.org/issue/18243). Ignoring error: %v", err)
+ }
t.Fatal(err)
}
fn := strings.TrimSpace(string(got))