From 4cd43f3077b3fc4acadf24ffd03da6b5a1d883b8 Mon Sep 17 00:00:00 2001 From: Robert Griesemer Date: Fri, 10 Jul 2015 15:48:11 -0600 Subject: [PATCH] go/types: exclude tests that run too long Backport of the go/types-specific changes of: https://go-review.googlesource.com/#/c/11673/ (from std repo go/types). This will allow running the go/types tests again in the x/tools repo. Change-Id: I97d4664d5aed6309e74b571f86f36f8bb4df4fca Reviewed-on: https://go-review.googlesource.com/12042 Reviewed-by: Ian Lance Taylor --- go/types/stdlib_test.go | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/go/types/stdlib_test.go b/go/types/stdlib_test.go index 848e7100..02d00dfa 100644 --- a/go/types/stdlib_test.go +++ b/go/types/stdlib_test.go @@ -137,10 +137,12 @@ 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", // 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 - "issue7746.go", // large constants - consumes too much memory + "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 + "issue7746.go", // large constants - consumes too much memory + "issue11326.go", // large constants + "issue11326b.go", // large constants ) }