From: Robert Griesemer Date: Thu, 10 Dec 2020 01:17:36 +0000 (-0800) Subject: [dev.typeparams] test: exclude 32bit-specific test that fails on 32bit platforms... X-Git-Tag: go1.17beta1~1473^2~163 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=ddf44904f125c964e81d7c3ec2612908f95a0fa3;p=gostls13.git [dev.typeparams] test: exclude 32bit-specific test that fails on 32bit platforms (fix build) Change-Id: I4f1d5d34dd9b26cea8e837a8ff7e833e02c913e1 Reviewed-on: https://go-review.googlesource.com/c/go/+/276815 Trust: Robert Griesemer Run-TryBot: Robert Griesemer TryBot-Result: Go Bot Reviewed-by: Robert Findley --- diff --git a/test/run.go b/test/run.go index db8bffc81f..3e0e7ab368 100644 --- a/test/run.go +++ b/test/run.go @@ -1969,7 +1969,8 @@ var excluded = map[string]bool{ "fixedbugs/bug374.go": true, "fixedbugs/bug379.go": true, "fixedbugs/bug383.go": true, - "fixedbugs/bug385_64.go": true, + "fixedbugs/bug385_32.go": true, // types2 doesn't produce "stack frame too large" error (32-bit specific) + "fixedbugs/bug385_64.go": true, // types2 doesn't produce "stack frame too large" error "fixedbugs/bug386.go": true, "fixedbugs/bug388.go": true, "fixedbugs/bug389.go": true,