From ef037a11d26f0c92de679ad2b1e1c6a9ccbfbd5f Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Wed, 3 Jan 2018 17:34:11 +0000 Subject: [PATCH] go/ssa/interp: skip tests on darwin until crashes are fixed MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updates golang/go#23166 Change-Id: Ie9db70d6f2f8d90817ec3de35e6ca51ec476f949 Reviewed-on: https://go-review.googlesource.com/85995 Run-TryBot: Brad Fitzpatrick Reviewed-by: Daniel Martí TryBot-Result: Gobot Gobot --- go/ssa/interp/interp_test.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/go/ssa/interp/interp_test.go b/go/ssa/interp/interp_test.go index 2683a28b864..997922f6695 100644 --- a/go/ssa/interp/interp_test.go +++ b/go/ssa/interp/interp_test.go @@ -13,6 +13,7 @@ import ( "go/types" "os" "path/filepath" + "runtime" "strings" "testing" "time" @@ -155,6 +156,9 @@ var testdataTests = []string{ type successPredicate func(exitcode int, output string) error func run(t *testing.T, dir, input string, success successPredicate) bool { + if runtime.GOOS == "darwin" { + t.Skip("skipping on darwin until golang.org/issue/23166 is fixed") + } fmt.Printf("Input: %s\n", input) start := time.Now()