summaryrefslogtreecommitdiff
path: root/test/235.go
Commit message (Collapse)AuthorAgeFilesLines
* test: [a-c]: add introductory comments to testsRob Pike2012-02-191-0/+3
| | | | | | | | | | | | Very few of the compiler regression tests include a comment saying waht they do. Many are obvious, some are anything but. I've started with a-c in the top directory. More will follow once we agree on the approach, correctness, and thoroughness here. zerodivide.go sneaked in too. R=rsc, r CC=golang-dev http://codereview.appspot.com/5656100
* test: use testlib (first 100)Russ Cox2012-02-161-1/+1
| | | | | | | | | | | 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 http://codereview.appspot.com/5656082
* single argument panicRuss Cox2010-03-301-22/+27
| | | | | | | | | | | | 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
* fix "declared and not used" in tests;Russ Cox2009-09-141-1/+0
| | | | | | | | | also template/template.go, missed last time. R=r DELTA=116 (61 added, 10 deleted, 45 changed) OCL=34620 CL=34622
* Don't bother to import "os" just so that we can callIan Lance Taylor2009-05-161-3/+0
| | | | | | | | | os.Exit(0) at the end of main. R=rsc DELTA=6 (0 added, 6 deleted, 0 changed) OCL=28967 CL=28969
* move things out of sys into os and runtimeRuss Cox2009-05-081-1/+3
| | | | | | R=r OCL=28569 CL=28573
* Automated g4 rollback of changelist 25024,Russ Cox2009-03-031-3/+3
| | | | | | | | | | plus significant hand editing. Back to T{x} for composite literals. R=r OCL=25612 CL=25632
* convert composite literals from { } to ( ).Russ Cox2009-02-131-3/+3
| | | | | | | | | | only non-trivial changes are in convlit1.go golden.out R=gri OCL=25019 CL=25024
* delete exportRuss Cox2009-01-201-2/+2
| | | | | | TBR=r OCL=23121 CL=23127
* convert tests; nothing interesting.Russ Cox2009-01-161-2/+2
| | | | | | R=r OCL=23012 CL=23014
* casify, cleanup sysRuss Cox2009-01-161-1/+1
| | | | | | R=r OCL=22978 CL=22984
* new new & makeRuss Cox2009-01-061-5/+5
| | | | | | R=r OCL=22166 CL=22166
* change *map to map; *chan to chan; new(T) to new(*T)Russ Cox2008-12-191-5/+5
| | | | | | | | fix bugs left over from *[] to [] conversion. TBR=r OCL=21576 CL=21581
* convert *[] to [].Russ Cox2008-12-181-2/+2
| | | | | | R=r OCL=21563 CL=21571
* update tests to new communications syntaxRob Pike2008-09-161-2/+2
| | | | | | | | powser1.go has not been tested - waiting for compiler to catch up R=ken OCL=15415 CL=15415
* fix some broken tests (tests themselves were wrong)Rob Pike2008-09-161-2/+10
| | | | | | R=gri,rsc OCL=15310 CL=15402
* test program to generate multiples of a set of factorsRobert Griesemer2008-09-121-0/+61
(as written, factors are 2, 3, and 5) R=r OCL=15286 CL=15286