From 1dce9cc7c790c12e145155682a8590b64be89675 Mon Sep 17 00:00:00 2001 From: David Symonds Date: Mon, 5 Aug 2013 13:54:22 +1000 Subject: [PATCH] go/types: exclude a couple of files from the stdlib test that don't parse on Windows. They use stuff in syscall that doesn't exist on Windows, and this test does not parse build tags (not that we make that easy) to automatically skip them. R=golang-dev, r, gri CC=golang-dev https://golang.org/cl/12453043 --- go/types/stdlib_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/go/types/stdlib_test.go b/go/types/stdlib_test.go index 70e6f7b6..1ad6d3f7 100644 --- a/go/types/stdlib_test.go +++ b/go/types/stdlib_test.go @@ -98,6 +98,7 @@ func TestStdtest(t *testing.T) { testTestDir(t, filepath.Join(runtime.GOROOT(), "test"), "cmplxdivide.go", // also needs file cmplxdivide1.go - ignore "goto.go", "label1.go", // TODO(gri) implement missing label checks + "mapnan.go", "sigchld.go", // don't work on Windows; testTestDir should consult build tags "sizeof.go", "switch.go", // TODO(gri) tone down duplicate checking in expr switches "typeswitch2.go", // TODO(gri) implement duplicate checking in type switches )