[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 <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: David Chase <drchase@google.com>
This commit is contained in:
Austin Clements 2025-08-13 15:47:38 -04:00
parent 858a8d2276
commit 257c1356ec
2 changed files with 4 additions and 0 deletions

View file

@ -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

View file

@ -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