From: Filippo Valsorda Date: Thu, 5 May 2022 22:38:02 +0000 (-0400) Subject: go/types,cmd/compile/internal/types2: fix TestStdlib X-Git-Tag: go1.19beta1~388 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=86536b934a6a5d074f1539b3103d7bc86a97e869;p=gostls13.git go/types,cmd/compile/internal/types2: fix TestStdlib CL 402556 moved a special-cased package and broke the longtests. Change-Id: I10b48e0912c1cee0eabc342ed1c1704ed79946bd Reviewed-on: https://go-review.googlesource.com/c/go/+/404474 Reviewed-by: Damien Neil Run-TryBot: Filippo Valsorda Reviewed-by: Filippo Valsorda Auto-Submit: Filippo Valsorda Reviewed-by: Roland Shoemaker TryBot-Result: Gopher Robot --- diff --git a/src/cmd/compile/internal/types2/stdlib_test.go b/src/cmd/compile/internal/types2/stdlib_test.go index 4e54056e74..fc541a4b45 100644 --- a/src/cmd/compile/internal/types2/stdlib_test.go +++ b/src/cmd/compile/internal/types2/stdlib_test.go @@ -211,7 +211,7 @@ var excluded = map[string]bool{ "builtin": true, // See #46027: some imports are missing for this submodule. - "crypto/ed25519/internal/edwards25519/field/_asm": true, + "crypto/internal/edwards25519/field/_asm": true, } // typecheck typechecks the given package files. diff --git a/src/go/types/stdlib_test.go b/src/go/types/stdlib_test.go index 69bd20b504..d75729ac39 100644 --- a/src/go/types/stdlib_test.go +++ b/src/go/types/stdlib_test.go @@ -213,7 +213,7 @@ var excluded = map[string]bool{ "builtin": true, // See #46027: some imports are missing for this submodule. - "crypto/ed25519/internal/edwards25519/field/_asm": true, + "crypto/internal/edwards25519/field/_asm": true, } // typecheck typechecks the given package files.