summaryrefslogtreecommitdiff
path: root/test/peano.go
AgeCommit message (Collapse)AuthorFilesLines
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-9/+4
2010-03-30single argument panicRuss Cox1-41/+41
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
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-01-20delete exportRuss Cox1-1/+1
TBR=r OCL=23121 CL=23127
2009-01-16convert tests; nothing interesting.Russ Cox1-1/+1
R=r OCL=23012 CL=23014
2009-01-06new new & makeRuss Cox1-1/+1
R=r OCL=22166 CL=22166
2008-12-19change *map to map; *chan to chan; new(T) to new(*T)Russ Cox1-2/+2
fix bugs left over from *[] to [] conversion. TBR=r OCL=21576 CL=21581
2008-08-11fix bug depot:Rob Pike1-2/+2
1) fix print statements, panic statements (parentheses required) 2) len is now allowed as a var name (bug053) R=gri OCL=14106 CL=14106
2008-07-12add new test - factorial by inc and decRob Pike1-0/+131
SVN=126937