renames
This commit is contained in:
parent
4d0784dbd9
commit
ed5af19d74
6
test/fc_blas/src/CMakeLists.txt
Normal file
6
test/fc_blas/src/CMakeLists.txt
Normal file
@ -0,0 +1,6 @@
|
||||
if(BLAS_FOUND)
|
||||
add_executable(example example.f90)
|
||||
target_link_libraries(example blas)
|
||||
else()
|
||||
message(FATAL_ERROR "BLAS library not found for the test fc_blas!")
|
||||
endif()
|
@ -1,6 +0,0 @@
|
||||
if (BLAS_FOUND)
|
||||
add_executable(example example.f90)
|
||||
target_link_libraries(example blas)
|
||||
else()
|
||||
message(FATAL_ERROR "OpenBLAS library not found for the test fc_openblas !")
|
||||
endif()
|
@ -121,9 +121,9 @@ def test_fc():
|
||||
# ------------------------------------------------------------------------------
|
||||
|
||||
|
||||
def test_fc_openblas():
|
||||
def test_fc_blas():
|
||||
if sys.platform != 'win32':
|
||||
stdout, stderr = configure_build_and_exe('fc_openblas', 'python setup.py --fc=gfortran --blas=auto')
|
||||
stdout, stderr = configure_build_and_exe('fc_blas', 'python setup.py --fc=gfortran --blas=auto')
|
||||
assert 'dgemm_test done' in stdout
|
||||
else:
|
||||
pass
|
||||
|
Loading…
x
Reference in New Issue
Block a user