aboutsummaryrefslogtreecommitdiff
path: root/test/args.go
AgeCommit message (Collapse)Author
2012-11-08test: run some more tests by defaultIan Lance Taylor
R=golang-dev, remyoudompheng, iant, rsc CC=golang-dev https://golang.org/cl/6833043
2012-09-23test: expand run.go's errorcheck, make clear which bugs runRuss Cox
Today, if run.go doesn't understand a test header line it just ignores the test, making it too easy to write or edit tests that are not actually being run. - expand errorcheck to accept flags, so that bounds.go and escape*.go can run. - create a whitelist of skippable tests in run.go; skipping others is an error. - mark all skipped tests at top of file. Update #4139. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/6549054
2012-02-19test: [a-c]: add introductory comments to testsRob Pike
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 https://golang.org/cl/5656100
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-06-24arguments availableRob Pike
argc, argv, envc, envv all in sys now sys.argc() etc. SVN=124398