aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Griesemer <gri@golang.org>2015-09-01 22:25:06 +0000
committerandroid-build-merger <android-build-merger@google.com>2015-09-01 22:25:06 +0000
commitbc8f94bf85cf8ecc1b651e7d97030c3dac8df670 (patch)
tree0fecd4429c5c49c86530ec97b19971e9a6267a96
parent2643f15e40f1d37761a209bc1ca5d6fe230d6985 (diff)
parent4cd43f3077b3fc4acadf24ffd03da6b5a1d883b8 (diff)
downloadtools-bc8f94bf85cf8ecc1b651e7d97030c3dac8df670.tar.gz
go/types: exclude tests that run too long
automerge: 4cd43f3 * commit '4cd43f3077b3fc4acadf24ffd03da6b5a1d883b8': go/types: exclude tests that run too long
-rw-r--r--go/types/stdlib_test.go10
1 files changed, 6 insertions, 4 deletions
diff --git a/go/types/stdlib_test.go b/go/types/stdlib_test.go
index 848e710..02d00df 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
)
}