]> Cypherpunks repositories - gostls13.git/commitdiff
[dev.simd] go/types: exclude simd/_gen module from TestStdlib
authorAustin Clements <austin@google.com>
Wed, 13 Aug 2025 19:47:38 +0000 (15:47 -0400)
committerAustin Clements <austin@google.com>
Wed, 13 Aug 2025 20:56:13 +0000 (13:56 -0700)
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>
src/cmd/compile/internal/types2/stdlib_test.go
src/go/types/stdlib_test.go

index 35e15d814defbb0a180c936605c025ce2e46d828..66f27b7829018be2da45662605cc86cf38afb5b1 100644 (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
index 8e95d23ec38375b0bee23150e97fff2af07d0e33..c3fddbf918956fdf0b10f90ba2af32d0feb28006 100644 (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