We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f9a420 commit 2e60747Copy full SHA for 2e60747
src/crypto/internal/fips/aes/gcm/ctrkdf_test.go
@@ -12,10 +12,14 @@ import (
12
"crypto/internal/fips/drbg"
13
"crypto/internal/fips/sha3"
14
"encoding/hex"
15
+ "runtime"
16
"testing"
17
)
18
19
func TestAllocations(t *testing.T) {
20
+ if runtime.GOARCH == "ppc64" || runtime.GOARCH == "ppc64le" {
21
+ t.Skip("Test reports non-zero allocation count. See issue #70448")
22
+ }
23
cryptotest.SkipTestAllocations(t)
24
if allocs := testing.AllocsPerRun(10, func() {
25
key := make([]byte, 32)
0 commit comments