From 60be2b465603a56807a8a1a8016c4c8f947579b5 Mon Sep 17 00:00:00 2001 From: Cherry Mui Date: Mon, 21 Nov 2022 11:54:54 -0500 Subject: [PATCH] go/types, cmd/compile: skip crypto/internal/bigmod/_asm in TestStdlib Similar to CL 317869, apply to a newly added directory. Maybe we should skip all directories starting with "_"? Updates #46027. Change-Id: Idcb011fda877c9f2cb3032524bebfcc0c1da70b2 Reviewed-on: https://go-review.googlesource.com/c/go/+/452437 Run-TryBot: Cherry Mui Reviewed-by: Dmitri Shuralyov TryBot-Result: Gopher Robot Reviewed-by: Bryan Mills Reviewed-by: Dmitri Shuralyov --- src/cmd/compile/internal/types2/stdlib_test.go | 1 + src/go/types/stdlib_test.go | 1 + 2 files changed, 2 insertions(+) diff --git a/src/cmd/compile/internal/types2/stdlib_test.go b/src/cmd/compile/internal/types2/stdlib_test.go index 7acb35b688..855474d60d 100644 --- a/src/cmd/compile/internal/types2/stdlib_test.go +++ b/src/cmd/compile/internal/types2/stdlib_test.go @@ -223,6 +223,7 @@ var excluded = map[string]bool{ // See #46027: some imports are missing for this submodule. "crypto/internal/edwards25519/field/_asm": true, + "crypto/internal/bigmod/_asm": true, } // typecheckFiles typechecks the given package files. diff --git a/src/go/types/stdlib_test.go b/src/go/types/stdlib_test.go index 5f0a72e092..0fb6061aa4 100644 --- a/src/go/types/stdlib_test.go +++ b/src/go/types/stdlib_test.go @@ -225,6 +225,7 @@ var excluded = map[string]bool{ // See #46027: some imports are missing for this submodule. "crypto/internal/edwards25519/field/_asm": true, + "crypto/internal/bigmod/_asm": true, } // typecheckFiles typechecks the given package files. -- 2.50.0