aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2015-02-23 14:00:51 -0500
committerRuss Cox <rsc@golang.org>2015-02-23 19:56:11 +0000
commit5b94a47b7f1ddfa975ffd9fc48f61dac2d47699b (patch)
tree14c6a826383343b450a6b73acf35c3c8539f1c34
parent9d6ed4af66e588cf7e9b45e397b53c80bacdc951 (diff)
downloadgo-5b94a47b7f1ddfa975ffd9fc48f61dac2d47699b.tar.gz
go-5b94a47b7f1ddfa975ffd9fc48f61dac2d47699b.zip
[dev.cc] test: disable syntax error tests
These don't work with the new compiler, because the new compiler doesn't have the custom syntax errors that I built for the old compiler. It will, just not yet. (Issue #9968.) Change-Id: I658f7dab2c7f855340a501f9ae4479c097b28cd3 Reviewed-on: https://go-review.googlesource.com/5632 Reviewed-by: Rob Pike <r@golang.org>
-rw-r--r--test/fixedbugs/bug121.go3
-rw-r--r--test/fixedbugs/bug349.go3
-rw-r--r--test/fixedbugs/bug388.go3
-rw-r--r--test/fixedbugs/bug435.go3
-rw-r--r--test/fixedbugs/issue4468.go3
-rw-r--r--test/run.go3
6 files changed, 17 insertions, 1 deletions
diff --git a/test/fixedbugs/bug121.go b/test/fixedbugs/bug121.go
index 5adf9827fa..34924019b8 100644
--- a/test/fixedbugs/bug121.go
+++ b/test/fixedbugs/bug121.go
@@ -1,3 +1,6 @@
+// skip
+// TODO(rsc): Reenable. See issue 9968.
+
// errorcheck
// Copyright 2009 The Go Authors. All rights reserved.
diff --git a/test/fixedbugs/bug349.go b/test/fixedbugs/bug349.go
index a3e6bd1619..2157d0741f 100644
--- a/test/fixedbugs/bug349.go
+++ b/test/fixedbugs/bug349.go
@@ -1,3 +1,6 @@
+// skip
+// TODO(rsc): Reenable. See issue 9968.
+
// errorcheck
// Copyright 2011 The Go Authors. All rights reserved.
diff --git a/test/fixedbugs/bug388.go b/test/fixedbugs/bug388.go
index d41f9ea543..4431f0c9e3 100644
--- a/test/fixedbugs/bug388.go
+++ b/test/fixedbugs/bug388.go
@@ -1,3 +1,6 @@
+// skip
+// TODO(rsc): Reenable. See issue 9968.
+
// errorcheck
// Copyright 2011 The Go Authors. All rights reserved.
diff --git a/test/fixedbugs/bug435.go b/test/fixedbugs/bug435.go
index 0c2ac7b3be..fc5bf8ab0b 100644
--- a/test/fixedbugs/bug435.go
+++ b/test/fixedbugs/bug435.go
@@ -1,3 +1,6 @@
+// skip
+// TODO(rsc): Reenable. See issue 9968.
+
// errorcheck
// Copyright 2012 The Go Authors. All rights reserved.
diff --git a/test/fixedbugs/issue4468.go b/test/fixedbugs/issue4468.go
index ef0b46bcf6..67b0a5d89b 100644
--- a/test/fixedbugs/issue4468.go
+++ b/test/fixedbugs/issue4468.go
@@ -1,3 +1,6 @@
+// skip
+// TODO(rsc): Reenable. See issue 9968.
+
// errorcheck
// Copyright 2012 The Go Authors. All rights reserved.
diff --git a/test/run.go b/test/run.go
index 6adf93cd98..bcd89a031f 100644
--- a/test/run.go
+++ b/test/run.go
@@ -50,7 +50,8 @@ var (
// dirs are the directories to look for *.go files in.
// TODO(bradfitz): just use all directories?
- dirs = []string{".", "ken", "chan", "interface", "syntax", "dwarf", "fixedbugs", "bugs"}
+ // TODO(rsc): Put syntax back. See issue 9968.
+ dirs = []string{".", "ken", "chan", "interface", "dwarf", "fixedbugs", "bugs"}
// ratec controls the max number of tests running at a time.
ratec chan bool