new test fc_openblas added (works on Linux only)

This commit is contained in:
Miro ILIAS
2015-07-12 22:16:31 +02:00
parent 87158e936c
commit bb3a4ad69f
5 changed files with 94 additions and 1 deletions

View File

@ -117,3 +117,11 @@ def test_cxx():
def test_fc():
stdout, stderr = boilerplate('fc', 'python setup.py --fc=gfortran')
assert 'Hello World!' in stdout
# ------------------------------------------------------------------------------
def test_fc_openblas():
if sys.platform != 'win32':
stdout, stderr = boilerplate('fc_openblas', 'python setup.py --fc=gfortran --blas=auto')
assert 'dgemm_test done'