From: Austin Clements Date: Wed, 13 Aug 2025 19:47:38 +0000 (-0400) Subject: [dev.simd] go/types: exclude simd/_gen module from TestStdlib X-Git-Tag: go1.26rc1~147^2~127 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=257c1356ec;p=gostls13.git [dev.simd] go/types: exclude simd/_gen module from TestStdlib We're about to add a small simd/_gen submodule that imports external dependencies. Exclude it from TestStdlib since it won't be able to follow those dependencies. Change-Id: I29a1adc98d141b9c511aa29e1992fab2248747d5 Reviewed-on: https://go-review.googlesource.com/c/go/+/695976 LUCI-TryBot-Result: Go LUCI Reviewed-by: David Chase --- diff --git a/src/cmd/compile/internal/types2/stdlib_test.go b/src/cmd/compile/internal/types2/stdlib_test.go index 35e15d814d..66f27b7829 100644 --- a/src/cmd/compile/internal/types2/stdlib_test.go +++ b/src/cmd/compile/internal/types2/stdlib_test.go @@ -358,6 +358,8 @@ func TestStdKen(t *testing.T) { var excluded = map[string]bool{ "builtin": true, "cmd/compile/internal/ssa/_gen": true, + "simd/_gen/simdgen": true, + "simd/_gen/unify": true, } // printPackageMu synchronizes the printing of type-checked package files in diff --git a/src/go/types/stdlib_test.go b/src/go/types/stdlib_test.go index 8e95d23ec3..c3fddbf918 100644 --- a/src/go/types/stdlib_test.go +++ b/src/go/types/stdlib_test.go @@ -360,6 +360,8 @@ func TestStdKen(t *testing.T) { var excluded = map[string]bool{ "builtin": true, "cmd/compile/internal/ssa/_gen": true, + "simd/_gen/simdgen": true, + "simd/_gen/unify": true, } // printPackageMu synchronizes the printing of type-checked package files in