From: Filippo Valsorda Date: Thu, 6 May 2021 01:32:04 +0000 (-0400) Subject: crypto/ed25519: skip allocations test on -noopt builder X-Git-Tag: go1.17beta1~229 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=43c390a1fa;p=gostls13.git crypto/ed25519: skip allocations test on -noopt builder Without optimizations, there will be unexpected allocations. Change-Id: I90dc2636279b7fda7689eabc763251c4cdd25874 Reviewed-on: https://go-review.googlesource.com/c/go/+/317370 Trust: Filippo Valsorda Run-TryBot: Filippo Valsorda TryBot-Result: Go Bot Reviewed-by: Emmanuel Odeke --- diff --git a/src/crypto/ed25519/ed25519_test.go b/src/crypto/ed25519/ed25519_test.go index ba9970e23e..8a973b36ea 100644 --- a/src/crypto/ed25519/ed25519_test.go +++ b/src/crypto/ed25519/ed25519_test.go @@ -186,6 +186,9 @@ func TestMalleability(t *testing.T) { } func TestAllocations(t *testing.T) { + if strings.HasSuffix(os.Getenv("GO_BUILDER_NAME"), "-noopt") { + t.Skip("skipping allocations test without relevant optimizations") + } if allocs := testing.AllocsPerRun(100, func() { seed := make([]byte, SeedSize) message := []byte("Hello, world!") diff --git a/src/crypto/ed25519/internal/edwards25519/edwards25519_test.go b/src/crypto/ed25519/internal/edwards25519/edwards25519_test.go index ac7c78c086..8031256525 100644 --- a/src/crypto/ed25519/internal/edwards25519/edwards25519_test.go +++ b/src/crypto/ed25519/internal/edwards25519/edwards25519_test.go @@ -7,7 +7,9 @@ package edwards25519 import ( "crypto/ed25519/internal/edwards25519/field" "encoding/hex" + "os" "reflect" + "strings" "testing" ) @@ -279,6 +281,9 @@ func TestNonCanonicalPoints(t *testing.T) { var testAllocationsSink byte func TestAllocations(t *testing.T) { + if strings.HasSuffix(os.Getenv("GO_BUILDER_NAME"), "-noopt") { + t.Skip("skipping allocations test without relevant optimizations") + } if allocs := testing.AllocsPerRun(100, func() { p := NewIdentityPoint() p.Add(p, NewGeneratorPoint())