Skip to content

Commit e3dde6f

Browse files
[Fortran] Enable tests that failed when using libpgmath on AArch64 Linux (#93)
Now that we're not using libpgmath, these tests pass on AArch64. They may work on Windows now but I don't have a build setup to check yet, and none of the builders run the test suite yet. If/when I can confirm, I'll come back and remove the Windows check too.
1 parent f234989 commit e3dde6f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Fortran/UnitTests/fcvs21_f95/CMakeLists.txt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,11 +79,10 @@ else()
7979
list(FILTER Source EXCLUDE REGEX "FM509\.f$")
8080
endif()
8181

82-
# Skip some tests that currently fail with flang on AArch64 when using libpgmath.
82+
# Skip some tests that currently fail with flang on Windows when using libpgmath.
8383
# FIXME: Reenable these tests after libpgmath is fixed or after we no longer
8484
# depend on it.
85-
if (CMAKE_Fortran_COMPILER_ID STREQUAL "LLVMFlang"
86-
AND (ARCH STREQUAL "AArch64" OR TARGET_OS STREQUAL "Windows"))
85+
if (CMAKE_Fortran_COMPILER_ID STREQUAL "LLVMFlang" AND TARGET_OS STREQUAL "Windows")
8786
# Regex because the GLOB returns the full path to each file
8887
list(FILTER Source EXCLUDE REGEX "FM813\.f$")
8988
list(FILTER Source EXCLUDE REGEX "FM815\.f$")

0 commit comments

Comments
 (0)