summaryrefslogtreecommitdiff
path: root/test/ken/interbasic.go
Commit message (Collapse)AuthorAgeFilesLines
* test: document ken/*.goRob Pike2012-02-241-0/+2
| | | | | | R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5694065
* test: use testlib (fourth 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 https://golang.org/cl/5673079
* delete all uses of panicln by rewriting them using panic or,Rob Pike2010-03-241-92/+171
| | | | | | | | | in the tests, println+panic. gofmt some tests too. R=rsc CC=golang-dev https://golang.org/cl/741041
* make test/ken safe for optional semisRobert Griesemer2009-12-101-4/+2
| | | | | R=rsc, ken2, ken3 https://golang.org/cl/174042
* insert type assertions when narrowing.Russ Cox2009-02-111-12/+12
| | | | | | R=r OCL=24349 CL=24913
* delete exportRuss Cox2009-01-201-1/+1
| | | | | | TBR=r OCL=23121 CL=23127
* convert tests; nothing interesting.Russ Cox2009-01-161-1/+1
| | | | | | R=r OCL=23012 CL=23014
* Don't use a type guard with a type which is not an interface.Ian Lance Taylor2008-11-071-1/+1
| | | | | | | R=r,gri DELTA=2 (0 added, 0 deleted, 2 changed) OCL=18781 CL=18785
* Per discussion earlier today with r and gri: when an interfaceIan Lance Taylor2008-10-241-1/+2
| | | | | | | | | | | | | object has a value of type "int", it should not automatically convert to type "int32". That is, the type alias "int" should be regarded as having been defined as though "type int int32" appeared outside of the package, and as therefore being a different type from "int32". R=ken DELTA=21 (20 added, 0 deleted, 1 changed) OCL=17587 CL=17842
* basic types/interfaces testKen Thompson2008-10-151-0/+104
R=r OCL=17247 CL=17247