summaryrefslogtreecommitdiff
path: root/test/mallocrep.go
Commit message (Collapse)AuthorAgeFilesLines
* single argument panicRuss Cox2010-03-301-1/+2
| | | | | | | | | | | | note that sortmain.go has been run through hg gofmt; only the formatting of the day initializers changed. i'm happy to revert that formatting if you'd prefer. stop on error in doc/progs/run R=r CC=golang-dev http://codereview.appspot.com/850041
* delete all uses of panicln by rewriting them using panic or,Rob Pike2010-03-241-2/+4
| | | | | | | | | in the tests, println+panic. gofmt some tests too. R=rsc CC=golang-dev http://codereview.appspot.com/741041
* runtime: malloc sampling, pprof interfaceRuss Cox2010-03-241-1/+2
| | | | | | R=r CC=golang-dev http://codereview.appspot.com/719041
* finalizers; merge package malloc into package runtimeRuss Cox2010-02-031-23/+24
| | | | | | R=r, cw CC=golang-dev http://codereview.appspot.com/198085
* time tests; sort -nr times.out | sed 10q is illuminating.Russ Cox2009-10-091-1/+1
| | | | | | | | | | cut the slowest tests down from a few seconds to under half a second. R=r DELTA=21 (6 added, 1 deleted, 14 changed) OCL=35509 CL=35519
* fix 386 malloc tests,Russ Cox2009-06-051-2/+5
| | | | | | | | | detect 386 darwin breakpoint line. R=r DELTA=22 (4 added, 0 deleted, 18 changed) OCL=29929 CL=29944
* convert tests; nothing interesting.Russ Cox2009-01-161-7/+7
| | | | | | R=r OCL=23012 CL=23014
* simplify flag interface. no more BVal etc. you just get a pointer.Rob Pike2009-01-091-6/+5
| | | | | | | | | fixed everything except the tutorial. R=rsc DELTA=404 (94 added, 139 deleted, 171 changed) OCL=22414 CL=22422
* malloc bug fixes.Russ Cox2008-12-191-1/+3
| | | | | | | | | | use malloc by default. free stacks. R=r DELTA=424 (333 added, 29 deleted, 62 changed) OCL=21553 CL=21584
* malloc in runtime (not used by default)Russ Cox2008-12-181-0/+56
R=r DELTA=1551 (1550 added, 0 deleted, 1 changed) OCL=21404 CL=21538