Skip to content

Commit

Permalink
test: Disable failing ui32_to_f64/min floattest
Browse files Browse the repository at this point in the history
This test fails in i386 + SSE2 builds by GCC.
See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100119.
  • Loading branch information
chfast authored and axic committed May 23, 2022
1 parent 9725e18 commit aca5b5f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/testfloat/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ if(TESTFLOAT_GEN)
list(APPEND IGNORE_LIST ui64_to_f64/min)
endif()

if(CMAKE_SYSTEM_PROCESSOR STREQUAL x86_64 AND CMAKE_SIZEOF_VOID_P EQUAL 4 AND CMAKE_CXX_COMPILER_ID MATCHES GNU)
# TODO: GCC 32-bit i386 build produces -0 for input 0, https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100119.
list(APPEND IGNORE_LIST ui32_to_f64/min)
endif()

set(ROUNDING_MODES near_even minMag min max)

# Arithmetic functions: sensitive to rounding and NaNs.
Expand Down

0 comments on commit aca5b5f

Please sign in to comment.