]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: ignore TestCgoPprofPIE test failures on Alpine (take 2)
authorBrad Fitzpatrick <bradfitz@golang.org>
Tue, 25 Apr 2017 04:59:14 +0000 (04:59 +0000)
committerBrad Fitzpatrick <bradfitz@golang.org>
Tue, 25 Apr 2017 05:02:56 +0000 (05:02 +0000)
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>
src/runtime/crash_cgo_test.go

index 252313ab67f9f2110334dcce8fc66e2196b38c27..3815cccfbc84f71e6b2d30c6c60ae96116eaa3c1 100644 (file)
@@ -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)
                }