Skip to content

Commit 2e60747

Browse files
committed
crypto/internal/fips/aes/gcm: skip TestAllocations on PPC64
TestAllocations is failing on PPC64 causing all PPC64 CI to fail. Skip the test until it can be debugged. For #70448 Change-Id: Ic18e402f4af5939a90eba2e1f2b182699013ed55 Reviewed-on: https://go-review.googlesource.com/c/go/+/629697 Reviewed-by: Filippo Valsorda <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: Cherry Mui <[email protected]>
1 parent 8f9a420 commit 2e60747

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/crypto/internal/fips/aes/gcm/ctrkdf_test.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,14 @@ import (
1212
"crypto/internal/fips/drbg"
1313
"crypto/internal/fips/sha3"
1414
"encoding/hex"
15+
"runtime"
1516
"testing"
1617
)
1718

1819
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+
}
1923
cryptotest.SkipTestAllocations(t)
2024
if allocs := testing.AllocsPerRun(10, func() {
2125
key := make([]byte, 32)

0 commit comments

Comments
 (0)