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/bug074.go b/test/fixedbugs/bug074.go index d9865c5..7b6d14e 100644 --- a/test/fixedbugs/bug074.go +++ b/test/fixedbugs/bug074.go
@@ -7,6 +7,6 @@ package main func main() { - x := string{'a', 'b', '\n'}; + x := string{'a', 'b', '\n'}; // ERROR "composite" print(x); }