Skip to content

Commit

Permalink
Merge pull request JuliaLang#7343 from tkelman/patch-4
Browse files Browse the repository at this point in the history
fix mpfr test failure on 64 bit Windows
  • Loading branch information
JeffBezanson committed Jun 21, 2014
2 parents a0f4493 + ff7bb88 commit 106a469
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/mpfr.jl
Original file line number Diff line number Diff line change
Expand Up @@ -773,9 +773,9 @@ tol = 1e-3
@test typemax(Uint128) * big(1.0) == big(typemax(Uint128))

# issue #3399
i1 = BigInt(10)^1000
i1 = BigInt(10)^int32(1000)
i2 = BigInt("10000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
f = BigFloat(10)^1000
f = BigFloat(10)^int32(1000)
@test i1 != i2
@test i1 != f
@test i2 != f
Expand Down

0 comments on commit 106a469

Please sign in to comment.