summaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug385_64.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: 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
* cmd/gc: move large stack variables to heapRuss Cox2013-08-081-8/+209
| | | | | | | | | | | | | | | | | | | Individual variables bigger than 10 MB are now moved to the heap, as if they had escaped on their own. This avoids ridiculous stacks for programs that do things like x := [1<<30]byte{} ... use x ... If 10 MB is too small, we can raise the limit. Fixes #6077. R=ken2 CC=golang-dev https://golang.org/cl/12650045
* test: add support for build tags.Rémy Oudompheng2013-01-281-4/+2
| | | | | | | | | This enables a few tests that were only executed unconditionnally. R=rsc, minux.ma, bradfitz CC=golang-dev https://golang.org/cl/7103051
* cmd/gc, cmd/6g: fix error on large stacks.Rémy Oudompheng2013-01-181-1/+7
| | | | | | | | Fixes #4666. R=golang-dev, daniel.morsing, rsc CC=golang-dev https://golang.org/cl/7141047
* test: prepare for 64-bit intsRuss Cox2012-09-241-1/+1
| | | | | | | | | | Minor tweaks to avoid assuming that int is always 32 bits. Update #2188. R=golang-dev, r CC=golang-dev https://golang.org/cl/6553062
* 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/+15
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