aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorqmuntal <quimmuntal@gmail.com>2024-04-26 09:38:44 +0200
committerGopher Robot <gobot@golang.org>2024-04-26 13:31:36 +0000
commit5ff0b531748fcdc88d6667e55e021fe02e0c0089 (patch)
tree612623c39fb4bc41ad0455cd4854b7b6431b1746
parent5419f652b6593a0916f7b2155435b945e8ee0fb4 (diff)
downloadgo-5ff0b531748fcdc88d6667e55e021fe02e0c0089.tar.gz
go-5ff0b531748fcdc88d6667e55e021fe02e0c0089.zip
bytes: skip TestNewBufferShallow if optimization is disabled
TestNewBufferShallow should be skipped if optimization is disabled. It is currently failing on no-opt builders. Change-Id: Ib5e62022a56a4e5f158f247d69a6229d2cb4d99e Reviewed-on: https://go-review.googlesource.com/c/go/+/581915 Auto-Submit: Than McIntosh <thanm@google.com> Reviewed-by: Than McIntosh <thanm@google.com> Auto-Submit: Quim Muntal <quimmuntal@gmail.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Joedian Reid <joedian@google.com>
-rw-r--r--src/bytes/buffer_test.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bytes/buffer_test.go b/src/bytes/buffer_test.go
index 322e7367c7..3c964fc6b9 100644
--- a/src/bytes/buffer_test.go
+++ b/src/bytes/buffer_test.go
@@ -7,6 +7,7 @@ package bytes_test
import (
. "bytes"
"fmt"
+ "internal/testenv"
"io"
"math/rand"
"strconv"
@@ -100,6 +101,7 @@ var buf Buffer
// should not result in any allocations.
// This can be used to reset the underlying []byte of an existing Buffer.
func TestNewBufferShallow(t *testing.T) {
+ testenv.SkipIfOptimizationOff(t)
n := testing.AllocsPerRun(1000, func() {
buf = *NewBuffer(testBytes)
})