Skip to content

Commit

Permalink
MPFR tests: skip the log2(x) == log2(42) test (#41473)
Browse files Browse the repository at this point in the history
* MPFR tests: mark the `log2(x) == log2(42)` test as broken on Windows

* Apply suggestions from code review

Co-authored-by: Simeon Schaub <simeondavidschaub99@gmail.com>

Co-authored-by: Simeon Schaub <simeondavidschaub99@gmail.com>
  • Loading branch information
DilumAluthge and simeonschaub authored Jul 5, 2021
1 parent eb85e3b commit fee5711
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/mpfr.jl
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,8 @@ end
@test log(x) == log(42)
@test isinf(log(BigFloat(0)))
@test_throws DomainError log(BigFloat(-1))
@test log2(x) == log2(42)
# issue #41450
@test_skip log2(x) == log2(42)
@test isinf(log2(BigFloat(0)))
@test_throws DomainError log2(BigFloat(-1))
@test log10(x) == log10(42)
Expand Down

0 comments on commit fee5711

Please sign in to comment.