]> Cypherpunks repositories - gostls13.git/commitdiff
go/types, cmd/compile: skip crypto/internal/bigmod/_asm in TestStdlib
authorCherry Mui <cherryyz@google.com>
Mon, 21 Nov 2022 16:54:54 +0000 (11:54 -0500)
committerCherry Mui <cherryyz@google.com>
Mon, 21 Nov 2022 17:46:02 +0000 (17:46 +0000)
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 <cherryyz@google.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Bryan Mills <bcmills@google.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
src/cmd/compile/internal/types2/stdlib_test.go
src/go/types/stdlib_test.go

index 7acb35b688e69344d4c4287dbc6de30b65878666..855474d60d38715f11ea1e05fdbe704e1f390b73 100644 (file)
@@ -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.
index 5f0a72e092706391874f42d4ca3bad0ba2887d7a..0fb6061aa49960fdb4ff1ebc60cae5b6881ae42c 100644 (file)
@@ -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.