aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCherry Zhang <cherryyz@google.com>2016-10-27 16:42:42 -0400
committerCherry Zhang <cherryyz@google.com>2016-10-27 21:44:37 +0000
commit0dabbcdc435e4babf76bd561cfe67a486404d73a (patch)
tree16adc080d146d0785e3e3163b59a4a73dc60589d /src
parentf357091a6d48c3a87db14338b321eca52af30dd7 (diff)
downloadgo-0dabbcdc435e4babf76bd561cfe67a486404d73a.tar.xz
math/big: flip long/short flag on TestFloat32Distribution
It looks like a typo in CL 30707. Change-Id: Ia2d013567dbd1a49901d9be0cd2d5a103e6e38cf Reviewed-on: https://go-review.googlesource.com/32187 Run-TryBot: Cherry Zhang <cherryyz@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Russ Cox <rsc@golang.org>
Diffstat (limited to 'src')
-rw-r--r--src/math/big/rat_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/big/rat_test.go b/src/math/big/rat_test.go
index e16ee5ef20..afda68658f 100644
--- a/src/math/big/rat_test.go
+++ b/src/math/big/rat_test.go
@@ -383,7 +383,7 @@ func TestFloat32Distribution(t *testing.T) {
11,
}
var winc, einc = uint64(5), 15 // quick test (~60ms on x86-64)
- if testing.Short() {
+ if *long {
winc, einc = uint64(1), 1 // soak test (~1.5s on x86-64)
}