Skip to content

Commit 60074b0

Browse files
committed
runtime: remove TestCollisions from -short
Takes a bit too long to run it all the time. Fixes #17217 Update #17104 Change-Id: I4802190ea16ee0f436a7f95b093ea0f995f5b11d Reviewed-on: https://go-review.googlesource.com/29751 Run-TryBot: Keith Randall <[email protected]> Reviewed-by: Brad Fitzpatrick <[email protected]> TryBot-Result: Gobot Gobot <[email protected]>
1 parent ab552aa commit 60074b0

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/runtime/hash_test.go

+3
Original file line numberDiff line numberDiff line change
@@ -683,6 +683,9 @@ func BenchmarkUnalignedLoad(b *testing.B) {
683683
}
684684

685685
func TestCollisions(t *testing.T) {
686+
if testing.Short() {
687+
t.Skip("Skipping in short mode")
688+
}
686689
for i := 0; i < 16; i++ {
687690
for j := 0; j < 16; j++ {
688691
if j == i {

0 commit comments

Comments
 (0)