1. 23 Apr, 2012 8 commits
  2. 22 Apr, 2012 1 commit
  3. 21 Apr, 2012 4 commits
  4. 20 Apr, 2012 8 commits
  5. 19 Apr, 2012 7 commits
  6. 18 Apr, 2012 5 commits
  7. 17 Apr, 2012 7 commits
    • Dave Cheney's avatar
      lib9: fix warning under clang 3.1 · b2c61168
      Dave Cheney authored
      Fixes #3534.
      
      R=golang-dev, rsc
      CC=golang-dev
      https://golang.org/cl/6035054
      b2c61168
    • Anthony Martin's avatar
      codereview: restore help messages · d3889ff3
      Anthony Martin authored
      Docstrings were not being set for the wrapper
      functions returned by the hgcommand decorator.
      
      R=golang-dev, minux.ma, rsc
      CC=golang-dev
      https://golang.org/cl/6059043
      d3889ff3
    • Andrew Balholm's avatar
      exp/html: more comprehensive tests · 9a6cef8b
      Andrew Balholm authored
      Currently, the html package only runs a limited subset of the tests
      in the testdata directory. This tends to limit development of the
      parser to fixing the bug that causes the first failing test.
      
      This CL gives it the ability to run all the tests and produce a
      log showing the status of each test. (It does it when tests are run with
      'go test --update-logs') The status is listed as PASS, FAIL, or PARSE
      (PARSE means that parsing produced the correct tree, but rendering and
      re-parsing does not produce the same tree).
      
      When 'go test' is run without --update-logs, it runs the tests marked
      'PASS' in the logs (and the parsing portion of the tests marked 'PARSE').
      Thus it will fail if there has been a regression since the last
      time the logs were updated.
      
      My goal for this CL is to allow develoment of the html package to
      be less test-driven, while still having the advantages of regression
      tests. In other words, one can work on any portion of the parser
      and quickly see whether he is breaking things or improving them.
      
      Current statistics of the tests:
      $ grep ^PASS *.log|wc -l
              1017
      $ grep ^PARSE *.log|wc -l
                46
      $ grep ^FAIL *.log|wc -l
               181
      
      R=nigeltao
      CC=golang-dev
      https://golang.org/cl/6031049
      9a6cef8b
    • David Symonds's avatar
      flag: update style. · b20163e9
      David Symonds authored
      R=golang-dev, r, r
      CC=golang-dev
      https://golang.org/cl/6051044
      b20163e9
    • Anthony Martin's avatar
      cmd/prof: don't build on Plan 9 for now. · 3192cac5
      Anthony Martin authored
      R=golang-dev, bradfitz, akumar
      CC=golang-dev
      https://golang.org/cl/5629054
      3192cac5
    • Anthony Martin's avatar
      os: avoid panic when testing errors on Plan 9 · 74607d18
      Anthony Martin authored
      R=golang-dev, bradfitz, akumar
      CC=golang-dev
      https://golang.org/cl/6017043
      74607d18
    • Akshat Kumar's avatar
      syscall: fix duplicate fd bug for Plan 9 · 4cf577ed
      Akshat Kumar authored
      This change comes from CL 5536043,
      created by Andrey Mirtchovski. His
      description follows:
      
      "The plan9 exec child handler does not manage
      dup-ed fds from the parent correctly: when a
      dup-ed file descriptor appears in the child's fd
      list it is closed when first encountered and then
      subsequent attempt to dup it later in Pass 2 fails,
      resulting in 'fork/exec: fd out of range or not
      open'."
      
      R=golang-dev, rminnich, ality
      CC=golang-dev, mirtchovski, rsc
      https://golang.org/cl/6009046
      4cf577ed