summaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug385_32.go
Commit message (Collapse)AuthorAgeFilesLines
* all: make copyright headers consistent with one space after periodEmmanuel Odeke2016-05-021-1/+1
| | | | | | | | | | | | | | | | | | Follows suit with https://go-review.googlesource.com/#/c/20111. Generated by running $ grep -R 'Go Authors. All' * | cut -d":" -f1 | while read F;do perl -pi -e 's/Go Authors. All/Go Authors. All/g' $F;done The code in cmd/internal/unvendor wasn't changed. Fixes #15213 Change-Id: I4f235cee0a62ec435f9e8540a1ec08ae03b1a75f Reviewed-on: https://go-review.googlesource.com/21819 Reviewed-by: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
* test: enable bug385_32 test on amd64p32.Rémy Oudompheng2014-03-201-1/+1
| | | | | | | LGTM=dave R=dave, rsc CC=golang-codereviews https://golang.org/cl/78110043
* test: disable large type/stack frame tests for gccgoIan Lance Taylor2013-12-121-1/+1
| | | | | | R=golang-dev, rsc CC=golang-dev https://golang.org/cl/40370052
* test: add support for build tags.Rémy Oudompheng2013-01-281-5/+3
| | | | | | | | | This enables a few tests that were only executed unconditionnally. R=rsc, minux.ma, bradfitz CC=golang-dev https://golang.org/cl/7103051
* 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 #4139. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/6549054
* test: fix bug headersRuss Cox2012-02-031-1/+1
| | | | | | | | | The letter is $A, not $O. ($O is set accidentally, but not for long.) R=golang-dev, r CC=golang-dev https://golang.org/cl/5629045
* gc: Nicer errors before miscompiling.Luuk van Dijk2012-01-101-0/+14
This fixes issue 2444. A big cleanup of all 31/32bit size boundaries i'll leave for another cl though. (see also issue 1700). R=rsc CC=golang-dev https://golang.org/cl/5484058