Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f4a3ec8

Browse files
DilumAluthgesimeonschaub
authored andcommittedJul 6, 2021
MPFR tests: skip the log2(x) == log2(42) test (#41473)
* MPFR tests: mark the `log2(x) == log2(42)` test as broken on Windows * Apply suggestions from code review Co-authored-by: Simeon Schaub <[email protected]> Co-authored-by: Simeon Schaub <[email protected]> (cherry picked from commit fee5711)
1 parent c00da17 commit f4a3ec8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎test/mpfr.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,8 @@ end
606606
@test log(x) == log(42)
607607
@test isinf(log(BigFloat(0)))
608608
@test_throws DomainError log(BigFloat(-1))
609-
@test log2(x) == log2(42)
609+
# issue #41450
610+
@test_skip log2(x) == log2(42)
610611
@test isinf(log2(BigFloat(0)))
611612
@test_throws DomainError log2(BigFloat(-1))
612613
@test log10(x) == log10(42)

0 commit comments

Comments
 (0)
Please sign in to comment.