From fee57110d517e01b7018303f550e686275e92676 Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Mon, 5 Jul 2021 19:19:16 -0400 Subject: [PATCH] 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 Co-authored-by: Simeon Schaub --- test/mpfr.jl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/mpfr.jl b/test/mpfr.jl index a4fac9c93c79a..0b6ff30e372dc 100644 --- a/test/mpfr.jl +++ b/test/mpfr.jl @@ -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)