aboutsummaryrefslogtreecommitdiff
path: root/src/strings
diff options
context:
space:
mode:
authorcui fliter <imcusg@gmail.com>2022-09-12 15:50:04 +0000
committerGopher Robot <gobot@golang.org>2022-09-13 17:39:52 +0000
commit09f3ff174c6487bebc4a9a6adea6d74baf6a92cc (patch)
tree16951c9dbbdd64bb27245a16cead64d06aec4ebb /src/strings
parent77420fa119643163f820be7752668a69100487d7 (diff)
downloadgo-09f3ff174c6487bebc4a9a6adea6d74baf6a92cc.tar.xz
strings: add a test case of growLen is negative
Before committing, the test coverage of strings/builder.go is 97.4% After committing, the test coverage of strings/builder.go is 100% Change-Id: I22643b1c4632b5ca7ef98362f32bb85faae80bad GitHub-Last-Rev: 2a55ca3e33d3aabd2ccc047de580abcfe05d6bb4 GitHub-Pull-Request: golang/go#55004 Reviewed-on: https://go-review.googlesource.com/c/go/+/430156 Reviewed-by: Ian Lance Taylor <iant@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Tobias Klauser <tobias.klauser@gmail.com> Run-TryBot: Ian Lance Taylor <iant@google.com> Auto-Submit: Ian Lance Taylor <iant@google.com> Reviewed-by: Jenny Rakoczy <jenny@golang.org>
Diffstat (limited to 'src/strings')
-rw-r--r--src/strings/builder_test.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/strings/builder_test.go b/src/strings/builder_test.go
index e3d239266f..dbc2c1943b 100644
--- a/src/strings/builder_test.go
+++ b/src/strings/builder_test.go
@@ -109,6 +109,15 @@ func TestBuilderGrow(t *testing.T) {
t.Errorf("growLen=%d: got %d allocs during Write; want %v", growLen, g, w)
}
}
+ // when growLen < 0, should panic
+ var a Builder
+ n := -1
+ defer func() {
+ if r := recover(); r == nil {
+ t.Errorf("a.Grow(%d) should panic()", n)
+ }
+ }()
+ a.Grow(n)
}
func TestBuilderWrite2(t *testing.T) {