From c2d8abcca25c0414b077755e8e9aaefc712fc819 Mon Sep 17 00:00:00 2001 From: Radovan Bast Date: Wed, 16 Sep 2015 15:27:15 +0200 Subject: [PATCH] skip cblas and clapack tests on osx --- test/test.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/test.py b/test/test.py index 57ea61c..abb805d 100644 --- a/test/test.py +++ b/test/test.py @@ -169,6 +169,7 @@ def test_fc_blas_static(): configure_build_and_exe('fc_blas', 'python setup.py --fc=gfortran --static --cmake-options="-DMATH_LIB_SEARCH_ORDER=\'OPENBLAS;ATLAS;MKL;SYSTEM_NATIVE\'"') +@skip_on_osx def test_cc_cblas(): configure_build_and_exe('cc_cblas', 'python setup.py --cc=gcc --cmake-options="-DMATH_LIB_SEARCH_ORDER=\'OPENBLAS;ATLAS;MKL;SYSTEM_NATIVE\'"') @@ -189,6 +190,7 @@ def test_fc_lapack_static(): configure_build_and_exe('fc_lapack', 'python setup.py --fc=gfortran --static --cmake-options="-DMATH_LIB_SEARCH_ORDER=\'OPENBLAS;ATLAS;MKL;SYSTEM_NATIVE\'"') +@skip_on_osx def test_cc_clapack(): configure_build_and_exe('cc_clapack', 'python setup.py --cc=gcc --cmake-options="-DMATH_LIB_SEARCH_ORDER=\'OPENBLAS;ATLAS;MKL;SYSTEM_NATIVE\'"')