1
0
mirror of https://github.com/golang/go synced 2024-10-01 15:58:33 -06:00

go/ssa/interp: skip tests on darwin until crashes are fixed

Updates golang/go#23166

Change-Id: Ie9db70d6f2f8d90817ec3de35e6ca51ec476f949
Reviewed-on: https://go-review.googlesource.com/85995
Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
Reviewed-by: Daniel Martí <mvdan@mvdan.cc>
TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
Brad Fitzpatrick 2018-01-03 17:34:11 +00:00
parent 894cde2672
commit ef037a11d2

View File

@ -13,6 +13,7 @@ import (
"go/types" "go/types"
"os" "os"
"path/filepath" "path/filepath"
"runtime"
"strings" "strings"
"testing" "testing"
"time" "time"
@ -155,6 +156,9 @@ var testdataTests = []string{
type successPredicate func(exitcode int, output string) error type successPredicate func(exitcode int, output string) error
func run(t *testing.T, dir, input string, success successPredicate) bool { 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) fmt.Printf("Input: %s\n", input)
start := time.Now() start := time.Now()