]> Cypherpunks repositories - gostls13.git/commitdiff
[dev.cc] test: disable syntax error tests
authorRuss Cox <rsc@golang.org>
Mon, 23 Feb 2015 19:00:51 +0000 (14:00 -0500)
committerRuss Cox <rsc@golang.org>
Mon, 23 Feb 2015 19:56:11 +0000 (19:56 +0000)
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>
test/fixedbugs/bug121.go
test/fixedbugs/bug349.go
test/fixedbugs/bug388.go
test/fixedbugs/bug435.go
test/fixedbugs/issue4468.go
test/run.go

index 5adf9827fa12de32f4858765cd763dbca2f06a9b..34924019b82a495476a3e68501a6ddc00bd0cce4 100644 (file)
@@ -1,3 +1,6 @@
+// skip
+// TODO(rsc): Reenable. See issue 9968.
+
 // errorcheck
 
 // Copyright 2009 The Go Authors. All rights reserved.
index a3e6bd1619aefd655ed78bdbc09f20c16a687ffa..2157d0741f35ce5a2164f8c5bb390df15c93e676 100644 (file)
@@ -1,3 +1,6 @@
+// skip
+// TODO(rsc): Reenable. See issue 9968.
+
 // errorcheck
 
 // Copyright 2011 The Go Authors.  All rights reserved.
index d41f9ea543c525062a5e1972597535c8d8d2ed11..4431f0c9e37a36d1187b8896c896cbdd923cee3f 100644 (file)
@@ -1,3 +1,6 @@
+// skip
+// TODO(rsc): Reenable. See issue 9968.
+
 // errorcheck
 
 // Copyright 2011 The Go Authors.  All rights reserved.
index 0c2ac7b3bef15e01090dbdbfe8bdf4e7b03636be..fc5bf8ab0b183d4dadd68f970c0b18390d59e58b 100644 (file)
@@ -1,3 +1,6 @@
+// skip
+// TODO(rsc): Reenable. See issue 9968.
+
 // errorcheck
 
 // Copyright 2012 The Go Authors.  All rights reserved.
index ef0b46bcf6829ba8c8aa517a5b57c134473b5510..67b0a5d89b1d4a80709c3eda56099be356a2979a 100644 (file)
@@ -1,3 +1,6 @@
+// skip
+// TODO(rsc): Reenable. See issue 9968.
+
 // errorcheck
 
 // Copyright 2012 The Go Authors.  All rights reserved.
index 6adf93cd98c43c11fe8f4d1f452825126c782384..bcd89a031fc2c87fb1910d8164bc92d82401df03 100644 (file)
@@ -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