aboutsummaryrefslogtreecommitdiff
path: root/test/string_lit.go
AgeCommit message (Collapse)Author
2013-12-12test: add []rune case to string_lit.goIan Lance Taylor
Gccgo managed to get this case wrong. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/41490044
2013-02-12test: ensure all failing tests exit nonzero.Alan Donovan
Previously merely printing an error would cause the golden file comparison (in 'bash run') to fail, but that is no longer the case with the new run.go driver. R=iant CC=golang-dev https://golang.org/cl/7310087
2012-08-30cmd/gc: string conversion for surrogatesRob Pike
This is required by the spec to produce the replacement char. The fix lies in lib9's rune code. R=golang-dev, nigeltao, rsc CC=golang-dev https://golang.org/cl/6443109
2012-02-24test/[n-z]*.go: add documentationRob Pike
R=golang-dev, bradfitz, r CC=golang-dev https://golang.org/cl/5700056
2012-02-16test: use testlib (final 61)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/5671080
2011-10-25cgo, goyacc, go/build, html, http, path, path/filepath, testing/quick, test: ↵Russ Cox
use rune Nothing terribly interesting here. R=golang-dev, bradfitz, gri, r CC=golang-dev https://golang.org/cl/5300043
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
2010-02-25gc: implement []int(string) and []byte(string)Russ Cox
R=ken2 CC=golang-dev https://golang.org/cl/224060
2009-12-09- gofmt these filesRobert Griesemer
- remove use of implicit string concatenation - these appear to be the only files correctly compiling under test that used implicit string concatenation R=rsc https://golang.org/cl/172043
2009-08-17fix up some irregular indentationRob Pike
R=rsc OCL=33382 CL=33391
2009-05-08move things out of sys into os and runtimeRuss Cox
R=r OCL=28569 CL=28573
2009-01-16casify, cleanup sysRuss Cox
R=r OCL=22978 CL=22984
2008-08-11fix bug depot:Rob Pike
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-07update to Unicode 5Rob Pike
SVN=126184
2008-06-27export sys.exitRob Pike
update tests to use exit rather than return ignore return value from main (actually done in prior CL) SVN=125173
2008-06-08fix string_lit test to be more thoroughRob Pike
SVN=121623
2008-06-06fix erroneous testRob Pike
SVN=121554
2008-05-08- changed literal syntax to use the convert notationRobert Griesemer
- fixed issued with function declarations/function literals - added more tests and fixed existing tests SVN=118167
2008-03-26- Make Coco/R-based parser work w/ UTF-8 encoded files even if there isRobert Griesemer
no (optional) UTF-8 marker present. SVN=113931
2008-03-26- new directory structureRobert Griesemer
SVN=113851