]> Cypherpunks repositories - gostls13.git/commitdiff
test: disable large type/stack frame tests for gccgo
authorIan Lance Taylor <iant@golang.org>
Fri, 13 Dec 2013 01:13:46 +0000 (17:13 -0800)
committerIan Lance Taylor <iant@golang.org>
Fri, 13 Dec 2013 01:13:46 +0000 (17:13 -0800)
R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/40370052

test/fixedbugs/bug385_32.go
test/fixedbugs/bug385_64.go

index 724ed932623aef4368a201737c2f48dd88fe9edc..4c3cad7798e4c0e9c00a7a2968842159aa630ea8 100644 (file)
@@ -9,7 +9,7 @@
 
 package main
 func main() {
-       var arr [1000200030]int   // ERROR "type .* too large"
+       var arr [1000200030]int   // GC_ERROR "type .* too large"
        arr_bkup := arr
        _ = arr_bkup
 }
index aef03c389dd040725859886b9d75adb56e5c5b2d..6789c0abf0f7d6f8d5063e9d58f5d721cbb53dae 100644 (file)
@@ -12,7 +12,7 @@ package main
 
 var z [10<<20]byte
 
-func main() { // ERROR "stack frame too large"
+func main() { // GC_ERROR "stack frame too large"
        // seq 1 206 | sed 's/.*/       var x& [10<<20]byte; z = x&/'
        var x1 [10<<20]byte; z = x1
        var x2 [10<<20]byte; z = x2