summaryrefslogtreecommitdiff
path: root/test/args.go
Commit message (Collapse)AuthorAgeFilesLines
* test: run some more tests by defaultIan Lance Taylor2012-11-081-4/+1
| | | | | | R=golang-dev, remyoudompheng, iant, rsc CC=golang-dev http://codereview.appspot.com/6833043
* test: expand run.go's errorcheck, make clear which bugs runRuss Cox2012-09-231-0/+3
| | | | | | | | | | | | | | | | 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 issue 4139. R=golang-dev, bradfitz CC=golang-dev http://codereview.appspot.com/6549054
* test: [a-c]: add introductory comments to testsRob Pike2012-02-191-0/+2
| | | | | | | | | | | | 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
* move things out of sys into os and runtimeRuss Cox2009-05-081-3/+5
| | | | | | R=r OCL=28569 CL=28573
* casify, cleanup sysRuss Cox2009-01-161-3/+3
| | | | | | R=r OCL=22978 CL=22984
* fix bug depot:Rob Pike2008-08-111-3/+3
| | | | | | | | | 1) fix print statements, panic statements (parentheses required) 2) len is now allowed as a var name (bug053) R=gri OCL=14106 CL=14106
* arguments availableRob Pike2008-06-241-0/+19
argc, argv, envc, envv all in sys now sys.argc() etc. SVN=124398