Mentions légales du service

Skip to content
Snippets Groups Projects
Commit b8e224b7 authored by Mathieu Faverge's avatar Mathieu Faverge
Browse files

Fix testings rules to have a better coverage

parent fed295b9
No related branches found
No related tags found
No related merge requests found
...@@ -78,7 +78,7 @@ set( SPM_VERSION "${SPM_VERSION_MAJOR}.${SPM_VERSION_MINOR}.${SPM_VERSION_MICRO} ...@@ -78,7 +78,7 @@ set( SPM_VERSION "${SPM_VERSION_MAJOR}.${SPM_VERSION_MINOR}.${SPM_VERSION_MICRO}
# Define precision supported by MAGMA_MORSE # Define precision supported by MAGMA_MORSE
# ----------------------------------------- # -----------------------------------------
set( RP_SPM_DICTIONNARY ${MORSE_CMAKE_MODULE_PATH}/precision_generator/subs.py ) set( RP_SPM_DICTIONNARY ${MORSE_CMAKE_MODULE_PATH}/precision_generator/subs.py )
set( RP_SPM_PRECISIONS "s;d;c;z" ) set( RP_SPM_PRECISIONS "p;s;d;c;z" )
include(RulesPrecisions) include(RulesPrecisions)
### System parameter detection ### System parameter detection
......
...@@ -61,13 +61,13 @@ set( SPM_DOF_TESTS ...@@ -61,13 +61,13 @@ set( SPM_DOF_TESTS
# Laplacian # Laplacian
foreach(example ${SPM_TESTS} ${SPM_DOF_TESTS} ) foreach(example ${SPM_TESTS} ${SPM_DOF_TESTS} )
foreach(arithm ${PASTIX_PRECISIONS} ) foreach(arithm ${RP_SPM_PRECISIONS} )
add_test(test_lap_${arithm}_${example} ./${example} --lap ${arithm}:10:10:10) add_test(test_lap_${arithm}_${example} ./${example} --lap ${arithm}:10:10:10)
endforeach() endforeach()
endforeach() endforeach()
# RSA # RSA
if (PASTIX_WITH_FORTRAN) if (SPM_WITH_FORTRAN)
foreach(example ${SPM_TESTS} ) foreach(example ${SPM_TESTS} )
add_test(test_rsa_${example} ./${example} --rsa ${CMAKE_SOURCE_DIR}/tests/matrix/small.rsa) add_test(test_rsa_${example} ./${example} --rsa ${CMAKE_SOURCE_DIR}/tests/matrix/small.rsa)
endforeach() endforeach()
......
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