From: Keith Randall Date: Sat, 24 Sep 2016 02:57:16 +0000 (-0700) Subject: runtime: remove TestCollisions from -short X-Git-Tag: go1.8beta1~1180 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=60074b0fd35e438b06ba8e42c0e90b1a8a2945b7;p=gostls13.git 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 Reviewed-by: Brad Fitzpatrick TryBot-Result: Gobot Gobot --- diff --git a/src/runtime/hash_test.go b/src/runtime/hash_test.go index 3108b3bf59..a6f3cdbdbe 100644 --- a/src/runtime/hash_test.go +++ b/src/runtime/hash_test.go @@ -683,6 +683,9 @@ func BenchmarkUnalignedLoad(b *testing.B) { } func TestCollisions(t *testing.T) { + if testing.Short() { + t.Skip("Skipping in short mode") + } for i := 0; i < 16; i++ { for j := 0; j < 16; j++ { if j == i {