summaryrefslogtreecommitdiff
path: root/test/nul1.go
Commit message (Collapse)AuthorAgeFilesLines
* test: run some more tests by defaultIan Lance Taylor2012-11-081-7/+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
* errchk: allow multiple patternsRuss Cox2011-08-161-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | // ERROR "pattern1" "pattern2" means that there has to be one or more lines matching pattern1 and then excluding those, there have to be one or more lines matching pattern2. So if you expect two different error messages from a particular line, writing two separate patterns checks that both errors are produced. Also, errchk now flags lines that produce more errors than expected. Before, as long as at least one error matched the pattern, all the others were ignored. Revise tests to expect or silence these additional errors. R=lvd, r, iant CC=golang-dev http://codereview.appspot.com/4869044
* remove naclRuss Cox2010-12-151-1/+0
| | | | | | | | | | | | The recent linker changes broke NaCl support a month ago, and there are no known users of it. The NaCl code can always be recovered from the repository history. R=adg, r CC=golang-dev http://codereview.appspot.com/3671042
* test: Match gccgo error messages.Ian Lance Taylor2010-09-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | tmp.go:4:20: error: invalid NUL byte tmp.go:6:24: error: invalid NUL byte tmp.go:8:15: error: invalid NUL byte tmp.go:10:21: error: invalid NUL byte tmp.go:12:22: error: invalid NUL byte tmp.go:14:21: error: invalid UTF-8 encoding tmp.go:14:22: error: invalid UTF-8 encoding tmp.go:16:25: error: invalid UTF-8 encoding tmp.go:18:15: error: invalid UTF-8 encoding tmp.go:18:16: error: invalid UTF-8 encoding tmp.go:20:21: error: invalid UTF-8 encoding tmp.go:20:22: error: invalid NUL byte tmp.go:20:23: error: invalid NUL byte tmp.go:23:6: error: invalid UTF-8 encoding tmp.go:23:7: error: invalid UTF-8 encoding tmp.go:25:22: error: invalid UTF-8 encoding R=rsc CC=golang-dev http://codereview.appspot.com/2151046
* test: remove semiocolons.Rob Pike2010-09-041-1/+1
| | | | | | | | The ken directory is untouched so we have some examples with explicit semis. R=gri CC=golang-dev http://codereview.appspot.com/2157041
* arm: fix build2, tweak test/nul1.go arm exclusionKai Backman2010-07-211-1/+1
| | | | | | R=rsc CC=golang-dev http://codereview.appspot.com/1866044
* fix buildKai Backman2010-07-201-1/+1
| | | | | | R=rsc CC=golang-dev http://codereview.appspot.com/1742048
* more soft float support. passes several basic testsKai Backman2010-07-201-0/+1
| | | | | | | | | | | | but with less precision than hardware counterparts. fixed a number of tests to output BUG when they failed. changed the runner to distinghuish between output and output containing ^BUG R=rsc CC=dho, golang-dev http://codereview.appspot.com/1778041
* runtime: closures, defer bug fix for Native ClientRuss Cox2010-04-221-0/+1
| | | | | | | | Enable package tests for Native Client build. R=r CC=golang-dev http://codereview.appspot.com/957042
* test: rename nul.go to nul1.goRuss Cox2010-02-211-0/+58
nul is a reserved file name in Windows R=r CC=golang-dev http://codereview.appspot.com/216068