go/ssa/interp: disable regularly broken tests in short mode
Updates golang/go#27292 Change-Id: I845afc64ca9ed2065c3b5645b7ce6def290d7a6d Reviewed-on: https://go-review.googlesource.com/131717 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
parent
f6ba574295
commit
4426aff4d0
|
@ -156,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 testing.Short() {
|
||||
t.Skip("test breaks regularly; skipping in short mode so a failure doesn't affect trybots or build.golang.org; golang.org/issue/27292")
|
||||
}
|
||||
if runtime.GOOS == "darwin" {
|
||||
t.Skip("skipping on darwin until golang.org/issue/23166 is fixed")
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue