Commit 16271b8b authored by Brad Fitzpatrick's avatar Brad Fitzpatrick

runtime: ignore TestCgoPprofPIE test failures on Alpine

Updates #19938
Updates #18243

Change-Id: Ib6e704c0a5d596bdfaa6493902d2528bec55bf16
Reviewed-on: https://go-review.googlesource.com/41628Reviewed-by: 's avatarIan Lance Taylor <iant@golang.org>
parent 9f98e498
......@@ -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))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment