aboutsummaryrefslogtreecommitdiff
path: root/test/hashmap.go
AgeCommit message (Collapse)Author
2012-02-20test/hashmap.go: deleteRob Pike
It's in an odd style and it's unclear what true purpose it serves as a test other than to be another Go program. R=gri CC=golang-dev https://golang.org/cl/5674111
2012-02-16test: use testlib (fourth 100)Russ Cox
X ,s;^// \$G (\$D/)?\$F\.go *$;// compile;g X ,s;^// \$G (\$D/)?\$F\.go && \$L \$F\.\$A *$;// build;g X ,s;^// \$G (\$D/)?\$F\.go && \$L \$F\.\$A && \./\$A\.out *$;// run;g X ,s;^// errchk \$G( -e)? (\$D/)?\$F\.go *$;// errorcheck;g R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5673079
2011-09-05build: clear execute bit from Go filesMike Rosset
R=golang-dev, rsc CC=golang-dev, mike.rosset https://golang.org/cl/4950062
2010-09-30gc, spec, tests: no auto-indirect of pointer to interface valueRuss Cox
Implies no embedding of pointer to interface value either. R=gri, iant, ken2, r, r2 CC=golang-dev https://golang.org/cl/2289041
2010-09-04test: remove semiocolons.Rob Pike
The ken directory is untouched so we have some examples with explicit semis. R=gri CC=golang-dev https://golang.org/cl/2157041
2009-09-14fix "declared and not used" in tests;Russ Cox
also template/template.go, missed last time. R=r DELTA=116 (61 added, 10 deleted, 45 changed) OCL=34620 CL=34622
2009-08-12convert non-pkg go files to whole-package compilation.Russ Cox
mostly removing forward declarations. R=r DELTA=138 (2 added, 127 deleted, 9 changed) OCL=33068 CL=33099
2009-01-20delete exportRuss Cox
TBR=r OCL=23121 CL=23127
2009-01-16convert tests; nothing interesting.Russ Cox
R=r OCL=23012 CL=23014
2009-01-06new new & makeRuss Cox
R=r OCL=22166 CL=22166
2008-12-19change *map to map; *chan to chan; new(T) to new(*T)Russ Cox
fix bugs left over from *[] to [] conversion. TBR=r OCL=21576 CL=21581
2008-08-29- removed need for int() conversion now that x << s has correct typeRobert Griesemer
- updated golden.out R=r DELTA=9 (0 added, 8 deleted, 1 changed) OCL=14657 CL=14657
2008-08-29- updated test cases to latest compiler changesRobert Griesemer
R=r DELTA=185 (59 added, 33 deleted, 93 changed) OCL=14655 CL=14655
2008-06-06first cut at test suiteRob Pike
SVN=121454
2008-03-26- new directory structureRobert Griesemer
SVN=113851