Commit 5b94a47b authored by Russ Cox's avatar Russ Cox

[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/5632Reviewed-by: 's avatarRob Pike <r@golang.org>
parent 9d6ed4af
// skip
// TODO(rsc): Reenable. See issue 9968.
// errorcheck
// Copyright 2009 The Go Authors. All rights reserved.
......
// skip
// TODO(rsc): Reenable. See issue 9968.
// errorcheck
// Copyright 2011 The Go Authors. All rights reserved.
......
// skip
// TODO(rsc): Reenable. See issue 9968.
// errorcheck
// Copyright 2011 The Go Authors. All rights reserved.
......
// skip
// TODO(rsc): Reenable. See issue 9968.
// errorcheck
// Copyright 2012 The Go Authors. All rights reserved.
......
// skip
// TODO(rsc): Reenable. See issue 9968.
// errorcheck
// Copyright 2012 The Go Authors. All rights reserved.
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment