aboutsummaryrefslogtreecommitdiff
path: root/src/go/types/check_test.go
diff options
context:
space:
mode:
authorRobert Griesemer <gri@golang.org>2015-04-07 17:04:08 -0700
committerRobert Griesemer <gri@golang.org>2015-04-08 03:45:49 +0000
commit5a97747c40aa23118b7b721d88038a584a5c3bc3 (patch)
treedb4c589018b8c087d922a1fb8a91adfcba45761b /src/go/types/check_test.go
parent254964074f34dc1cb39693f3e23a95938092044f (diff)
downloadgo-5a97747c40aa23118b7b721d88038a584a5c3bc3.tar.gz
go-5a97747c40aa23118b7b721d88038a584a5c3bc3.zip
go/types: skip failing tests (fix build)
Temporary work-around so we can start using go/types in the std repo. Change-Id: I661465af791171b01cd23abf34dcb7eea6e26173 Reviewed-on: https://go-review.googlesource.com/8594 Reviewed-by: Rob Pike <r@golang.org>
Diffstat (limited to 'src/go/types/check_test.go')
-rw-r--r--src/go/types/check_test.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/go/types/check_test.go b/src/go/types/check_test.go
index edc9c0e762..dc4284c4eb 100644
--- a/src/go/types/check_test.go
+++ b/src/go/types/check_test.go
@@ -278,6 +278,10 @@ func checkFiles(t *testing.T, testfiles []string) {
}
func TestCheck(t *testing.T) {
+ if skipTest() {
+ return
+ }
+
// Declare builtins for testing.
DefPredeclaredTestFuncs()