commit | 34b277f046eb4b6ffffd524ff76c5fd264f82b87 | [log] [tgz] |
---|---|---|
author | Russ Cox <rsc@golang.org> | Thu Jul 30 16:46:14 2009 -0700 |
committer | Russ Cox <rsc@golang.org> | Thu Jul 30 16:46:14 2009 -0700 |
tree | 413365520b2fa7535b11aeeeedba7ca625287e66 | |
parent | 36ca5fde680faf1abd4b05b4ca1b96c488fcbdb8 [diff] [blame] |
use errchk in more places. let errchk exit 0 even if it has reported a BUG. it echoed BUG and that's all that matters. R=r DELTA=143 (1 added, 89 deleted, 53 changed) OCL=32533 CL=32542
diff --git a/test/fixedbugs/bug037.go b/test/fixedbugs/bug037.go index b0345cc..ff7d287 100644 --- a/test/fixedbugs/bug037.go +++ b/test/fixedbugs/bug037.go
@@ -7,5 +7,5 @@ package main func main() { - s := vlong(0); // BUG no vlong specified in the language + s := vlong(0); // ERROR "undef" }