- ae1ea2a runtime/trace: add new package by Dmitry Vyukov · 10 years ago
- 2ae7737 all: link to https instead of http by Brad Fitzpatrick · 10 years ago
- 1f9026c testing: don't print CPU count for tests, only benchmarks by Rob Pike · 10 years ago
- fddc3ca testing: add -test.count flag to run tests and benchmarks multiple times by Russ Cox · 10 years ago
- c06b856 testing: fix typo by Shenghou Ma · 10 years ago
- 2b83366 testing: make the output of -v more uniform and aligned when using fixed-width fonts by Rob Pike · 10 years ago
- e9827f6 testing: document that Log and Logf always print in benchmarks by Rob Pike · 10 years ago
- f63678a testing: document that flag.Parse is not called when TestMain runs by Shenghou Ma · 10 years ago
- 20004ba testing: add tracing support by Dmitry Vyukov · 10 years ago
- 8f47c83 runtime: fix memory profiler by Dmitriy Vyukov · 10 years ago
- 5edff32 testing: clearer comment by Robert Griesemer · 11 years ago
- 182d131 cmd/go, testing: add TestMain support by Russ Cox · 11 years ago
- c007ce8 build: move package sources from src/pkg to src by Russ Cox · 11 years ago[Renamed from src/pkg/testing/testing.go]
- 0e92b53 testing: fix timing format inconsistency by Robert Dinu · 11 years ago
- 21e75b3 testing: write profiles on failure by Russ Cox · 11 years ago
- f1e4184 testing: improve introduction to package comment Fixes #7361. by Rob Pike · 11 years ago
- c3922f0 testing: ease writing parallel benchmarks by Dmitriy Vyukov · 11 years ago
- 91fbf6f testing: fix SkipNow and FailNow to avoid panic(nil) check by Russ Cox · 11 years ago
- ae56210 testing: diagnose buggy tests that panic(nil) by Russ Cox · 11 years ago
- 8f10c76 cmd/godoc: document package-level examples by Olivier Duperray · 11 years ago
- 6fb9cc1 testing: don't start timing a Parallel test until it's actually starting by Rob Pike · 12 years ago
- 35d8bb3 testing: add TB, an interface common to T and B by Brad Fitzpatrick · 12 years ago
- 337407d testing: make parsing of -cpu more lenient by Russ Cox · 12 years ago
- bd0a14f testing: say what was the timeout if it fires by Dmitriy Vyukov · 12 years ago
- ccc4553 cmd/go, testing: streamline direct use of test binaries by Russ Cox · 12 years ago
- 27cca31 cmd/go: simplify flags for coverage by Rob Pike · 12 years ago
- 8e8b8b8 cmd/go: write coverage to file, add percentage statistic by Rob Pike · 12 years ago
- 563d09c testing: use -bench flag and fix flags doc link by Dan Peterson · 12 years ago
- 28a1c36 testing: add -outputdir flag so "go test" controls where the files are written by Rob Pike · 12 years ago
- 03048ae testing: structure package documentation by Volker Dobler · 12 years ago
- 144dd2b testing: document that Log and Logf do not usually produce output by Rob Pike · 12 years ago
- 174a17e testing: report test as failed if the test panics. by Ewan Chou · 12 years ago
- d31dd08 testing: move Skip into *common by Dave Cheney · 12 years ago
- 2482ef72 testing: document that example output must use line comments by Olivier Duperray · 12 years ago
- 782cbb4 testing: fix output formatting by Robert Dinu · 12 years ago
- 6600092 testing: be explicit about use of b.N by Russ Cox · 12 years ago
- 89a2a8c cmd/go, testing: revise docs for test flags by Russ Cox · 12 years ago
- 2cb8dce testing: SkipNow, FailNow must be called from test goroutine by Russ Cox · 12 years ago
- f7ea900 testing: add Skip/Skipf by Dave Cheney · 12 years ago
- b78f5f0 testing: document whitespace trimming of example expected/actual output. by Caleb Spare · 12 years ago
- 465b9c3 gofmt: apply gofmt -w src misc by Robert Griesemer · 12 years ago
- 51310d8 testing: fix extra tabs when t.Log("string") by Shenghou Ma · 12 years ago
- 4cc7bf3 pprof: add goroutine blocking profiling by Dmitriy Vyukov · 12 years ago
- 727e5ce testing: update package docs to use ResetTimer() instead of StopTimer/StartTimer() by Shenghou Ma · 12 years ago
- b7cbfe6 testing: document -test.bench flag by Francesc Campoy · 13 years ago
- 74a1a8a testing: add memory allocation stats to benchmark by Eric Roshan-Eisner · 13 years ago
- 20bf1a9 testing: add Verbose() to expose whether -test.v is set Fixes #3350. by Shenghou Ma · 13 years ago
- 9b14127 testing: allow concurrent use of T and B by Brad Fitzpatrick · 13 years ago
- dd78f74 testing: fix memory blowup when formatting many lines. by Rémy Oudompheng · 13 years ago
- 291636b testing: do not print 'no tests' when there are examples by Russ Cox · 13 years ago
- ec15046 cmd/go: drop -example, apply -run to examples Once more, with feeling. by Rob Pike · 13 years ago
- 5876b4e testing: add -test.example flag to control execution of examples by Rob Pike · 13 years ago
- 11e113d godoc: make example code more readable with new comment convention by Andrew Gerrand · 13 years ago
- e11632e go/doc, godoc: regard lone examples as "whole file" examples by Andrew Gerrand · 13 years ago
- bf28383 testing: let runtime catch the panic. by Rob Pike · 13 years ago
- 8bcfad2 testing: use runtime/debug to format panics by Russ Cox · 13 years ago
- f735d2d testing: use runtime/debug to format panics by Russ Cox · 13 years ago
- 7ef97de testing: fix references to "gotest" by Rob Pike · 13 years ago
- cee9202 testing: capture panics, present them, and mark the test as a failure. by David Symonds · 13 years ago
- 3b87d68 testing: document examples by Rob Pike · 13 years ago
- 9535b86 go/doc: don't ignore anonymous non-exported fields by Robert Griesemer · 13 years ago
- 4953b87 testing: fix defer race by Russ Cox · 13 years ago
- 57c9bb4 testing: use flag.Duration for -timeout flag. by David Symonds · 13 years ago
- 416afcb testing: add wrapper methods so the godoc output lists all methods by Rob Pike · 13 years ago
- b1a287e testing: fix the fix to the wording about the bug TBR=rsc by Rob Pike · 13 years ago
- 34139ee testing: fix wording in explanation of potential bug TBR=rsc by Rob Pike · 13 years ago
- 6615513 testing: make signalling safer for parallel tests by Rob Pike · 13 years ago
- b5216e2 testing: compare Log to Println by Robert Hencke · 13 years ago
- c50e4f5 testing: allow benchmarks to print and fail by Rob Pike · 13 years ago
- 7ab25a4 pkg: adjust "the a" in comments by Robert Hencke · 13 years ago
- 2949f3b time: use Duration for AfterFunc. by David Symonds · 13 years ago
- 03823b8 use new time API by Russ Cox · 13 years ago
- a3fb1ae testing: print test results to standard output by Russ Cox · 13 years ago
- 2c39ca0 testing: add file:line stamps to messages. by Rob Pike · 13 years ago
- eb69292 src/pkg/[n-z]*: gofix -r error -force=error by Russ Cox · 13 years ago
- c09af50 testing: fix time reported for failing tests. by Rob Pike · 13 years ago
- af1ae43 go/doc, godoc, gotest: support for reading example documentation by Andrew Gerrand · 13 years ago
- f80d8fb testing: Add support for running tests in parallel (t.Parallel API). by Miki Tebeka · 13 years ago
- 90564a9 go/printer: changed max. number of newlines from 3 to 2 by Robert Griesemer · 14 years ago
- ebb1566 strings.Split: make the default to split all. by Rob Pike · 14 years ago
- 9843ca5 gotest: add -test.benchtime and -test.cpu flags. by Dmitriy Vyukov · 14 years ago
- 79b397b testing: check that tests and benchmarks do not affect GOMAXPROCS by Dmitriy Vyukov · 14 years ago
- 6a186d3 src/pkg: make package doc comments consistently start with "Package foo". by Nigel Tao · 14 years ago
- 8a90fd3 os: New Open API. by Rob Pike · 14 years ago
- 554082d testing: add -test.timeout option. by Ian Lance Taylor · 14 years ago
- f0cf7d2 testing: shorten some tests. by Rob Pike · 14 years ago
- d406f8f testing: set up structure for faster testing using the new -test.short flag. by Rob Pike · 14 years ago
- 543acc9 testing: add -test.cpuprofile flag by Russ Cox · 14 years ago
- afaa306 testing: add -test.memprofile and -test.memprofilerate flags. by Rob Pike · 14 years ago
- 07cc8b9 Make.pkg, doc: Replace references to "-benchmarks" and "-match" with "-test.bench" and "-test.run". by Kyle Consalus · 14 years ago
- 1634390 testing: Fix typo on Logf doc comment. by David Symonds · 14 years ago
- 6d9db54 testing: rename cmdline flags to avoid conflicts by Gustavo Niemeyer · 14 years ago
- a93c994 testing: include elapsed time in output by Russ Cox · 14 years ago
- 04a231d testing: fix error message on invalid regexp by Eoghan Sherry · 14 years ago
- 3b44fbe testing: rename type Test to InternalTest by Peter Mundy · 14 years ago
- 4e9cc08 testing: eliminate testing/regexp by Rob Pike · 14 years ago
- 2ee420f ... changes by Russ Cox · 15 years ago
- 3fbe7f4 testing: update documentation to match current coding style by Christopher Wedgwood · 15 years ago
- abe6a5b testing: Fix comment typo by Evan Shaw · 15 years ago
- d2fc5d6 Change type of Printf's args to ... interface{} by Rob Pike · 15 years ago