aboutsummaryrefslogtreecommitdiff
path: root/test/ken/string.go
AgeCommit message (Collapse)Author
2018-05-31test: remove rundircmpout and cmpout actionsYury Smolsky
This CL removes the rundircmpout action completely because it is not used anywhere. The run case already looks for output files. Rename the cmpout action mentioned in tests to the run action and remove "cmpout" from run.go. Change-Id: I835ceb70082927f8e9360e0ea0ba74f296363ab3 Reviewed-on: https://go-review.googlesource.com/115575 Run-TryBot: Yury Smolsky <yury@smolsky.by> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
2012-02-24test: document ken/*.goRob Pike
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5694065
2012-02-24test: add cmpout to testlibBrad Fitzpatrick
R=golang-dev, r CC=golang-dev https://golang.org/cl/5699060
2012-01-18test: split golden.out into expected output per testIan Lance Taylor
This will permit gccgo to check test output. R=golang-dev, r CC=golang-dev https://golang.org/cl/5554056
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-06-08misc cleanup: gofmt + &x -> x[0:] conversionRuss Cox
R=gri CC=golang-dev https://golang.org/cl/1620042
2010-03-30single argument panicRuss Cox
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 https://golang.org/cl/850041
2009-12-10make test/ken safe for optional semisRobert Griesemer
R=rsc, ken2, ken3 https://golang.org/cl/174042
2009-11-20x[y:] for stringsRuss Cox
R=ken2 https://golang.org/cl/157114
2009-06-04string([]int) is now implementedRob Pike
R=rsc DELTA=18 (10 added, 2 deleted, 6 changed) OCL=29909 CL=29909
2009-04-16make string take []byte only, so have to use *[10]byte to convertRuss Cox
R=r DELTA=4 (0 added, 0 deleted, 4 changed) OCL=27578 CL=27584
2009-01-06new new & makeRuss Cox
R=r OCL=22166 CL=22166
2008-12-20fix some tests. only 3 remain broken (complit, hilbert, initcomma).Rob Pike
leaving golden.out alone for now. R=ken DELTA=13 (0 added, 0 deleted, 13 changed) OCL=21682 CL=21682
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-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-06-21remove receclarations from testsKen Thompson
that are supposed to succeed SVN=124018
2008-06-06add ken's tests.Rob Pike
update run to work with multiple directories SVN=121485