From: Ian Lance Taylor Date: Tue, 15 Dec 2020 21:12:17 +0000 (-0800) Subject: Go testsuite: update bugs for recent change X-Git-Tag: upstream/12.2.0~10856 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=34c7d3d3b216d674192678443bcfd379ec575d9f;p=platform%2Fupstream%2Fgcc.git Go testsuite: update bugs for recent change This matches changes in 788d204885c187d5604e3960d7c78e1523f04861. --- diff --git a/gcc/testsuite/go.test/test/fixedbugs/bug195.go b/gcc/testsuite/go.test/test/fixedbugs/bug195.go index aef7bd2..94f61ff 100644 --- a/gcc/testsuite/go.test/test/fixedbugs/bug195.go +++ b/gcc/testsuite/go.test/test/fixedbugs/bug195.go @@ -19,7 +19,7 @@ type I4 interface { // GC_ERROR "invalid recursive type I4\n\tLINE: I4 refers to } type I5 interface { // GC_ERROR "invalid recursive type I5\n\tLINE: I5 refers to\n\tLINE+4: I6 refers to\n\tLINE: I5$" - I6 // GCCGO_ERROR "interface" + I6 } type I6 interface { diff --git a/gcc/testsuite/go.test/test/fixedbugs/bug251.go b/gcc/testsuite/go.test/test/fixedbugs/bug251.go index 706bb8d..977aa49 100644 --- a/gcc/testsuite/go.test/test/fixedbugs/bug251.go +++ b/gcc/testsuite/go.test/test/fixedbugs/bug251.go @@ -8,7 +8,7 @@ package main type I1 interface { // GC_ERROR "invalid recursive type" m() I2 - I2 // GCCGO_ERROR "loop|interface" + I2 } type I2 interface {