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