summaryrefslogtreecommitdiff
path: root/src/pkg/testing/quick
Commit message (Collapse)AuthorAgeFilesLines
* testing/quick: brought Check parameter name in line with function docCaleb Spare2014-06-191-3/+3
| | | | | | | | | LGTM=bradfitz R=golang-codereviews, bradfitz CC=golang-codereviews https://codereview.appspot.com/102830043 Committer: Shenghou Ma <minux@golang.org>
* testing/quick: fix for aliased types, delete duplicate uint8 test, and fix ↵Jonathan Hseu2013-05-142-36/+137
| | | | | | | | | | randFloat64() to give random numbers from (-math.MaxFloat64, math.MaxFloat64). R=r, agl CC=agl, bradfitz, golang-dev https://codereview.appspot.com/9296046 Committer: Rob Pike <r@golang.org>
* build: remove dead codeRuss Cox2013-03-221-2/+0
| | | | | | R=golang-dev, r CC=golang-dev https://codereview.appspot.com/7877045
* testing/quick: documentation tweaksRob Pike2012-02-101-4/+5
| | | | | | | | Fixes issue 2960. R=golang-dev, bradfitz CC=golang-dev http://codereview.appspot.com/5652055
* build: remove Make.pkg, Make.toolRuss Cox2012-01-301-11/+0
| | | | | | | | | | | | | | | Consequently, remove many package Makefiles, and shorten the few that remain. gomake becomes 'go tool make'. Turn off test phases of run.bash that do not work, flagged with $BROKEN. Future CLs will restore these, but this seemed like a big enough CL already. R=golang-dev, r CC=golang-dev http://codereview.appspot.com/5601057
* renaming_3: gofix -r go1pkgrename src/pkg/[m-z]*Rob Pike2011-11-082-2/+2
| | | | | | R=rsc CC=golang-dev http://codereview.appspot.com/5345045
* src/pkg/[n-z]*: gofix -r error -force=errorRuss Cox2011-11-012-9/+7
| | | | | | R=golang-dev, bsiegert, iant CC=golang-dev http://codereview.appspot.com/5294074
* cgo, goyacc, go/build, html, http, path, path/filepath, testing/quick, test: ↵Russ Cox2011-10-251-2/+2
| | | | | | | | | | use rune Nothing terribly interesting here. R=golang-dev, bradfitz, gri, r CC=golang-dev http://codereview.appspot.com/5300043
* fix tree for reflect renameRuss Cox2011-04-252-19/+19
| | | | | | R=golang-dev, r CC=golang-dev http://codereview.appspot.com/4435067
* src/pkg: make package doc comments consistently start with "Package foo".Nigel Tao2011-04-201-1/+1
| | | | | | R=rsc CC=golang-dev http://codereview.appspot.com/4442064
* changes for more restricted reflect.SetValueRuss Cox2011-04-181-3/+3
| | | | | | R=golang-dev, r CC=golang-dev http://codereview.appspot.com/4423043
* pkg: manual cleanup of some gofixed codeRuss Cox2011-04-131-33/+30
| | | | | | R=golang-dev, niemeyer, r CC=golang-dev http://codereview.appspot.com/4372052
* update go tree for reflect changesRuss Cox2011-04-081-26/+27
| | | | | | R=golang-dev, r CC=golang-dev http://codereview.appspot.com/4353043
* delete float, complex - code changesRuss Cox2011-01-192-11/+12
| | | | | | | | | | | also: cmplx -> complex float64(1.0) -> 1.0 float64(1) -> 1.0 R=gri, r, gri1, r2 CC=golang-dev http://codereview.appspot.com/3991043
* build: no required environment variablesRuss Cox2010-08-181-1/+1
| | | | | | R=adg, r, PeterGo CC=golang-dev http://codereview.appspot.com/1942044
* reflect: add Kind, remove Int8Type, Int8Value, etc.Russ Cox2010-06-201-31/+34
| | | | | | | | update other code to match. R=r CC=golang-dev http://codereview.appspot.com/1680044
* testing: update documentation to match current coding styleChristopher Wedgwood2010-04-111-2/+2
| | | | | | | | R=rsc, r CC=golang-dev http://codereview.appspot.com/823045 Committer: Rob Pike <r@golang.org>
* 1) Change default gofmt default settings forRobert Griesemer2009-12-152-151/+151
| | | | | | | | | | | | | | | | | | | | | | | | | | | parsing and printing to new syntax. Use -oldparser to parse the old syntax, use -oldprinter to print the old syntax. 2) Change default gofmt formatting settings to use tabs for indentation only and to use spaces for alignment. This will make the code alignment insensitive to an editor's tabwidth. Use -spaces=false to use tabs for alignment. 3) Manually changed src/exp/parser/parser_test.go so that it doesn't try to parse the parser's source files using the old syntax (they have new syntax now). 4) gofmt -w src misc test/bench 5th and last set of files. R=rsc CC=golang-dev http://codereview.appspot.com/180050
* go: makes it build for the case $GOROOT has whitespacesSergio Luis O. B. Correia2009-11-231-2/+2
| | | | | | | | | | | | | | | | | the bash scripts and makefiles for building go didn't take into account the fact $GOROOT / $GOBIN could both be directories containing whitespaces, and was not possible to build it in such a situation. this commit adjusts the various makefiles/scripts to make it aware of that possibility, and now it builds successfully when using a path with whitespaces as well. Fixes issue 115. R=rsc, dsymonds1 http://codereview.appspot.com/157067 Committer: Russ Cox <rsc@golang.org>
* - replaced gofmt expression formatting algorithm withRobert Griesemer2009-11-091-5/+5
| | | | | | | | | rsc's algorithm - applied gofmt -w misc src - partial CL (last chunk) R=rsc, r http://go/go-review/1024041
* remove semis after statements in one-statement statement listsRobert Griesemer2009-11-092-48/+48
| | | | | R=rsc, r http://go/go-review/1025029
* - fine-tuning of one-line func heuristic (nodes.go)Robert Griesemer2009-11-062-69/+23
| | | | | | | | | | - enabled for function declarations (not just function literals) - applied gofmt -w $GOROOT/src (look for instance at src/pkg/debug/elf/elf.go) R=r, rsc CC=go-dev http://go/go-review/1026006
* Add a quickcheck package which is a little like the Haskell one of the sameAdam Langley2009-10-283-0/+564
name. R=rsc APPROVED=rsc DELTA=566 (566 added, 0 deleted, 0 changed) OCL=35974 CL=36111