Skip to content

Commit c7022fe

Browse files
committed
Use CMAKE_SYSTEM_PROCESSOR to determine if NS test can be run
- Prevent having to explicitly run `uname` CMAKE_SYSTEM_PROCESSOR holds the output of `uname -p` which will be x86_64 on all x86_64 Linux machines, and another value on incompatible machines line OS X, arm, etc. - Since this is a CMake variable no scoping/inheritence etc. issues, or concerns about conditional definition etc.
1 parent e8927d6 commit c7022fe

File tree

2 files changed

+8
-17
lines changed

2 files changed

+8
-17
lines changed

CMakeLists.txt

+4-9
Original file line numberDiff line numberDiff line change
@@ -169,15 +169,10 @@ if(opencoarrays_aware_compiler)
169169
add_mpi_test(hello_multiverse 2 ${tests_root}/integration/coarrayHelloWorld/hello_multiverse)
170170
add_mpi_test(coarray_burgers_pde 2 ${tests_root}/integration/pde_solvers/coarrayBurgers/coarray_burgers_pde)
171171
add_mpi_test(co_heat 2 ${tests_root}/integration/pde_solvers/coarrayHeatSimplified/co_heat)
172-
173-
execute_process (COMMAND uname -m
174-
OUTPUT_VARIABLE MACHINE_TYPE)
175-
if ("${CMAKE_SYSTEM_NAME}" MATCHES "Linux" )
176-
if ("${MACHINE_TYPE}" MATCHES "x86_64")
177-
if ( NOT (DEFINED ENV{TRAVIS}))
178-
add_mpi_test(coarray_navier_stokes 2 ${tests_root}/integration/pde_solvers/navier-stokes/coarray_navier_stokes)
179-
set_property(TEST coarray_navier_stokes PROPERTY PASS_REGULAR_EXPRESSION "Test passed.")
180-
endif()
172+
if ( ("${CMAKE_SYSTEM_PROCESSOR}" MATCHES "x86_64") AND ("${CMAKE_SYSTEM_NAME}" MATCHES "Linux") )
173+
if ( NOT (DEFINED ENV{TRAVIS}))
174+
add_mpi_test(coarray_navier_stokes 2 ${tests_root}/integration/pde_solvers/navier-stokes/coarray_navier_stokes)
175+
set_property(TEST coarray_navier_stokes PROPERTY PASS_REGULAR_EXPRESSION "Test passed.")
181176
endif()
182177
endif()
183178
else()
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
1-
if ("${CMAKE_SYSTEM_NAME}" MATCHES "Linux")
2-
execute_process (COMMAND uname -m
3-
OUTPUT_VARIABLE MACHINE_TYPE)
4-
# checking whether the machine is of type 64-bit before proceeding further
5-
if ("${MACHINE_TYPE}" MATCHES "x86_64")
6-
# Default to older SSE-instruction-based FFT library
7-
if (NOT (DEFINED ENV{TRAVIS}))
1+
# checking whether the machine is of type 64-bit before proceeding further
2+
if ( ("${CMAKE_SYSTEM_PROCESSOR}" MATCHES "x86_64") AND ("${CMAKE_SYSTEM_NAME}" MATCHES "LINUX") )
3+
# Default to older SSE-instruction-based FFT library
4+
if (NOT (DEFINED ENV{TRAVIS}))
85
if (LEGACY_ARCHITECTURE OR (NOT DEFINED(LEGACY_ARCHITECTURE)))
96
set(fft_library ${CMAKE_CURRENT_SOURCE_DIR}/libfft_sse.a )
107
else()
@@ -17,7 +14,6 @@ if ("${CMAKE_SYSTEM_NAME}" MATCHES "Linux")
1714
)
1815
target_link_libraries(coarray_navier_stokes OpenCoarrays ${fft_library})
1916
endif()
20-
endif()
2117
else()
2218
# Skip Navier-Stokes build until an appropriate FFT has been found.
2319
endif()

0 commit comments

Comments
 (0)