go.tools/go/ssa: skip broken TestStdlib on windows
Update golang/go#7189 LGTM=dave R=golang-codereviews, dave CC=golang-codereviews https://golang.org/cl/49640049
This commit is contained in:
parent
69f7b061bd
commit
269daf307c
|
|
@ -49,6 +49,11 @@ func allPackages() []string {
|
|||
}
|
||||
|
||||
func TestStdlib(t *testing.T) {
|
||||
// TODO(brainman): delete when issue 7189 is fixed.
|
||||
if runtime.GOOS == "windows" {
|
||||
t.Skip("skipping broken test on windows; see golang.org/issue/7189")
|
||||
}
|
||||
|
||||
// Load, parse and type-check the program.
|
||||
t0 := time.Now()
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue