Adapt the BLAS test with the OpenBLAS library on MS Windows

- both dynamic and static
This commit is contained in:
Miro ILIAS
2015-08-24 10:57:09 +02:00
parent 6d33b694c5
commit cc315f36dd
2 changed files with 10 additions and 4 deletions

View File

@ -176,14 +176,12 @@ def test_fc_static():
# ------------------------------------------------------------------------------
@skip_on_windows
def test_fc_blas():
configure_build_and_exe('fc_blas', 'python setup.py --fc=gfortran')
configure_build_and_exe('fc_blas', 'python setup.py --fc=gfortran --cmake-options="-DMATH_LIB_SEARCH_ORDER=\'OPENBLAS;ATLAS;MKL;SYSTEM_NATIVE\'"')
@skip_on_windows
def test_fc_blas_static():
configure_build_and_exe('fc_blas', 'python setup.py --fc=gfortran --static')
configure_build_and_exe('fc_blas', 'python setup.py --fc=gfortran --static --cmake-options="-DMATH_LIB_SEARCH_ORDER=\'OPENBLAS;ATLAS;MKL;SYSTEM_NATIVE\'"')
# ------------------------------------------------------------------------------