summaryrefslogtreecommitdiff
path: root/test/mallocfin.go
AgeCommit message (Collapse)AuthorFilesLines
2012-04-06Imported Upstream version 1upstream/1Ondřej Surý1-2/+12
2011-09-13Imported Upstream version 60upstream/60Ondřej Surý1-0/+67
2011-09-13Imported Upstream version 60Ondřej Surý1-67/+0
2010-03-30single argument panicRuss Cox1-2/+3
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-26runtime: run all finalizers in a single goroutine.Russ Cox1-2/+8
eliminate second pass of mark+sweep by scanning finalizer table specially. R=r CC=golang-dev http://codereview.appspot.com/782041
2010-03-24test/mallocfin: relax test to 80% from 90%.Russ Cox1-1/+1
R=r CC=golang-dev http://codereview.appspot.com/725042
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-02-03finalizers; merge package malloc into package runtimeRuss Cox1-0/+58
R=r, cw CC=golang-dev http://codereview.appspot.com/198085