1. 12 Jul, 2013 18 commits
  2. 11 Jul, 2013 12 commits
  3. 10 Jul, 2013 8 commits
  4. 09 Jul, 2013 2 commits
    • Rob Pike's avatar
      cmd/go: fix a couple of bugs in coverage tooling · 6d86c14e
      Rob Pike authored
      Merging a couple of CLs into one, since they collided in my client
      and I'm lazy.
      
      1) Fix up output in "go test -cover" case.
      We need to tell the testing package the name of the package being tested
      and the name of the package being covered. It can then sort out the report.
      
      2) Filter out the _test.go files from coverage processing. We want to measure
      what the tests cover, not what's covered in the tests,
      The coverage for encoding/gob goes from 82.2% to 88.4%.
      There may be a cleaner way to do this - suggestions welcome - but ça suffit.
      
      Fixes #5810.
      
      R=rsc
      CC=golang-dev
      https://golang.org/cl/10868047
      6d86c14e
    • Robert Griesemer's avatar
      builtin: document print and println · c7065e92
      Robert Griesemer authored
      Fixes #5787.
      
      R=r
      CC=golang-dev
      https://golang.org/cl/11057043
      c7065e92