summaryrefslogtreecommitdiff
path: root/test/mallocrep.go
AgeCommit message (Collapse)AuthorFilesLines
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-1/+2
2010-03-30single argument panicRuss Cox1-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
2010-03-24delete all uses of panicln by rewriting them using panic or,Rob Pike1-2/+4
in the tests, println+panic. gofmt some tests too. R=rsc CC=golang-dev http://codereview.appspot.com/741041
2010-03-24runtime: malloc sampling, pprof interfaceRuss Cox1-1/+2
R=r CC=golang-dev http://codereview.appspot.com/719041
2010-02-03finalizers; merge package malloc into package runtimeRuss Cox1-23/+24
R=r, cw CC=golang-dev http://codereview.appspot.com/198085
2009-10-09time tests; sort -nr times.out | sed 10q is illuminating.Russ Cox1-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
2009-06-05fix 386 malloc tests,Russ Cox1-2/+5
detect 386 darwin breakpoint line. R=r DELTA=22 (4 added, 0 deleted, 18 changed) OCL=29929 CL=29944
2009-01-16convert tests; nothing interesting.Russ Cox1-7/+7
R=r OCL=23012 CL=23014
2009-01-09simplify flag interface. no more BVal etc. you just get a pointer.Rob Pike1-6/+5
fixed everything except the tutorial. R=rsc DELTA=404 (94 added, 139 deleted, 171 changed) OCL=22414 CL=22422
2008-12-19malloc bug fixes.Russ Cox1-1/+3
use malloc by default. free stacks. R=r DELTA=424 (333 added, 29 deleted, 62 changed) OCL=21553 CL=21584
2008-12-18malloc in runtime (not used by default)Russ Cox1-0/+56
R=r DELTA=1551 (1550 added, 0 deleted, 1 changed) OCL=21404 CL=21538