From b5d07c813b4df369483e8f4789315e925f68b562 Mon Sep 17 00:00:00 2001 From: Robert Griesemer Date: Thu, 10 Apr 2014 10:39:00 -0700 Subject: [PATCH] go.tools/go/types: tweak test exceptions Per feedback from rsc. LGTM=rsc, adonovan R=adonovan, rsc CC=golang-codereviews https://golang.org/cl/86310043 --- go/types/stdlib_test.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/go/types/stdlib_test.go b/go/types/stdlib_test.go index 9f2f961e..86da7797 100644 --- a/go/types/stdlib_test.go +++ b/go/types/stdlib_test.go @@ -117,17 +117,17 @@ func testTestDir(t *testing.T, path string, ignore ...string) { func TestStdTest(t *testing.T) { testTestDir(t, filepath.Join(runtime.GOROOT(), "test"), - "cmplxdivide.go", // also needs file cmplxdivide1.go - ignore - "mapnan.go", "sigchld.go", // don't work on Windows; testTestDir should consult build tags + "cmplxdivide.go", // also needs file cmplxdivide1.go - ignore + "sigchld.go", // don't work on Windows; testTestDir should consult build tags ) } func TestStdFixed(t *testing.T) { testTestDir(t, filepath.Join(runtime.GOROOT(), "test", "fixedbugs"), "bug248.go", "bug302.go", "bug369.go", // complex test instructions - ignore - "bug459.go", // likely incorrect test - see issue 6703 (pending spec clarification) - "issue3924.go", // likely incorrect test - see issue 6671 (pending spec clarification) - "issue6889.go", // incorrect test + "bug459.go", // possibly incorrect test - see issue 6703 (pending spec clarification) + "issue3924.go", // possibly incorrect test - see issue 6671 (pending spec clarification) + "issue6889.go", // gc-specific test ) }