]> Cypherpunks repositories - gostls13.git/commit
archive/zip: skip large concurrent tests in race mode
authorBrad Fitzpatrick <bradfitz@golang.org>
Mon, 21 Nov 2016 19:09:42 +0000 (19:09 +0000)
committerBrad Fitzpatrick <bradfitz@golang.org>
Mon, 21 Nov 2016 20:51:42 +0000 (20:51 +0000)
commit1368de3db23ed51992a57cc828c5f14558b4b49f
tree139e56adbd7895996e19bf9c9d0ac6a5d1f6633a
parent35231ec7c6a6d9277bf6ac53cb0142e4d37c2ece
archive/zip: skip large concurrent tests in race mode

We recently added these large zip64 tests. They're slow-ish already,
but fast enough in non-race mode with t.Parallel. But in race mode,
the concurrency makes them much slower than the normal
non-race-to-race multiplier.

They're taking so long now that it's causing test failures when it
sometimes is over the test timeout threshold.

Change-Id: I02f4ceaa9d6cab826708eb3860f47a57b05bdfee
Reviewed-on: https://go-review.googlesource.com/33423
Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
src/archive/zip/zip_test.go