Skip to content
Snippets Groups Projects
Commit b501e129 authored by Guillaume Poirier-Morency's avatar Guillaume Poirier-Morency
Browse files

Add missing check for -Dwith_mkl in in tests

parent e2d3a3a3
No related branches found
No related tags found
No related merge requests found
......@@ -14,8 +14,8 @@ mirbooking_integration_tests = [
['superlu', ['--sparse-solver', 'superlu'], get_option('with_superlu')],
['superlu-mt', ['--sparse-solver', 'superlu-mt'], get_option('with_superlu_mt')],
['umfpack', ['--sparse-solver', 'umfpack'], get_option('with_umfpack')],
['mkl-dss', ['--sparse-solver', 'mkl-dss'], get_option('with_mkl_dss')],
['mkl-cluster', ['--sparse-solver', 'mkl-cluster'], get_option('with_mkl_cluster')],
['mkl-dss', ['--sparse-solver', 'mkl-dss'], get_option('with_mkl') and get_option('with_mkl_dss')],
['mkl-cluster', ['--sparse-solver', 'mkl-cluster'], get_option('with_mkl') and get_option('with_mkl_cluster')],
['cusolver', ['--sparse-solver', 'cusolver'], get_option('with_cusolver')],
['pardiso', ['--sparse-solver', 'pardiso'], get_option('with_pardiso')],
['tsv', ['--output-format', 'tsv'], true],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment