aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/crash_cgo_test.go
diff options
context:
space:
mode:
authorBrad Fitzpatrick <bradfitz@golang.org>2017-04-25 04:59:14 +0000
committerBrad Fitzpatrick <bradfitz@golang.org>2017-04-25 05:02:56 +0000
commit34ee8ec193aa211883326aca7ba223f711da5fd1 (patch)
tree4f42100ad65102632c041245e0e0c923008c53e9 /src/runtime/crash_cgo_test.go
parentb64e817853531cc73dd5fd13a5038434283d3e5b (diff)
downloadgo-34ee8ec193aa211883326aca7ba223f711da5fd1.tar.gz
go-34ee8ec193aa211883326aca7ba223f711da5fd1.zip
runtime: ignore TestCgoPprofPIE test failures on Alpine (take 2)
s/arm64/amd64/ in previous typo CL 41628 Updates #19938 Updates #18243 Change-Id: I282244ee3c94535f229a87b6246382385ff64428 Reviewed-on: https://go-review.googlesource.com/41675 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src/runtime/crash_cgo_test.go')
-rw-r--r--src/runtime/crash_cgo_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/crash_cgo_test.go b/src/runtime/crash_cgo_test.go
index 252313ab67..3815cccfbc 100644
--- a/src/runtime/crash_cgo_test.go
+++ b/src/runtime/crash_cgo_test.go
@@ -282,7 +282,7 @@ 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" {
+ if testenv.Builder() == "linux-amd64-alpine" {
// See Issue 18243 and Issue 19938.
t.Skipf("Skipping failing test on Alpine (golang.org/issue/18243). Ignoring error: %v", err)
}