1. 13 Apr, 2016 1 commit
  2. 12 Apr, 2016 37 commits
  3. 11 Apr, 2016 2 commits
    • Brad Fitzpatrick's avatar
      context: attempt to deflake timing tests · 501ddf71
      Brad Fitzpatrick authored
      Passes on OpenBSD now when running it with -count=500.
      
      Presumably this will also fix the same problems seen on FreeBSD and
      Windows.
      
      Fixes #15158
      
      Change-Id: I86451c901613dfa5ecff0c2ecc516527a3c011b3
      Reviewed-on: https://go-review.googlesource.com/21840
      Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarAndrew Gerrand <adg@golang.org>
      501ddf71
    • Rob Pike's avatar
      cmd/vet: improve documentation for flags, slightly · d1feddb7
      Rob Pike authored
      The way that -all works was unclear from the documentation and made
      worse by recent changes to the flag package. Improve matters by making
      the help message say "default true" for the tests that do default to true,
      and tweak some of the wording.
      
      Before:
      
      Usage of vet:
      	vet [flags] directory...
      	vet [flags] files... # Must be a single package
      For more information run
      	go doc cmd/vet
      
      Flags:
        -all
          	enable all non-experimental checks (default unset)
        -asmdecl
          	check assembly against Go declarations (default unset)
      ...
      
      After:
      
      Usage of vet:
      	vet [flags] directory...
      	vet [flags] files... # Must be a single package
      By default, -all is set and all non-experimental checks are run.
      For more information run
      	go doc cmd/vet
      
      Flags:
        -all
          	enable all non-experimental checks (default true)
        -asmdecl
          	check assembly against Go declarations (default true)
      ...
      
      Change-Id: Ie94b27381a9ad2382a10a7542a93bce1d59fa8f5
      Reviewed-on: https://go-review.googlesource.com/21495Reviewed-by: 's avatarAndrew Gerrand <adg@golang.org>
      d1feddb7