new test for lapack added, all fc tests fixed for PGI Fortran

This commit is contained in:
Miro ILIAS
2015-08-02 13:37:50 +02:00
parent f7b1b854aa
commit 7d192205aa
7 changed files with 76 additions and 2 deletions

View File

@ -137,7 +137,17 @@ def test_fc():
def test_fc_blas():
if sys.platform != 'win32':
stdout, stderr = configure_build_and_exe('fc_blas', 'python setup.py --fc=gfortran --blas=auto')
stdout, stderr = configure_build_and_exe('fc_blas', 'python setup.py --fc=gfortran')
assert 'dgemm test ok' in stdout
else:
pass
# ------------------------------------------------------------------------------
def test_fc_lapack():
if sys.platform != 'win32':
stdout, stderr = configure_build_and_exe('fc_lapack', 'python setup.py --fc=gfortran')
assert 'dgesv test ok' in stdout
else:
pass