X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=check%2FCMakeLists.txt;h=bd6b76049540efac9837dccec8c203c871a0b001;hp=4e9e7454f187d31c6446c3e444e70f1d936d9f31;hb=3563317bdfee90677c041bf1cb585ad220e9b7d3;hpb=bf0d26572edecc37d98aec715e14fbd71a8c0315 diff --git a/check/CMakeLists.txt b/check/CMakeLists.txt index 4e9e7454..bd6b7604 100644 --- a/check/CMakeLists.txt +++ b/check/CMakeLists.txt @@ -18,6 +18,7 @@ set(ginac_tests exam_inifcns_nstdsums exam_differentiation exam_polygcd + exam_collect_common_factors exam_normalization exam_factor exam_pseries @@ -28,10 +29,10 @@ set(ginac_tests exam_clifford exam_archive exam_structure - exam_hashmap exam_misc exam_mod_gcd exam_cra + exam_real_imag bugme_chinrem_gcd pgcd_relatively_prime_bug pgcd_infinite_loop) @@ -41,7 +42,6 @@ set(ginac_timings time_gammaseries time_vandermonde time_toeplitz - time_hashmap time_lw_A time_lw_B time_lw_C @@ -69,9 +69,9 @@ macro(add_ginac_test thename) set(${thename}_sources ${thename}.cpp ${${thename}_extra_src}) endif() add_executable(${thename} EXCLUDE_FROM_ALL ${${thename}_sources}) - target_link_libraries(${thename} ginac) + target_link_libraries(${thename} ginac ${LIBDL_LIBRARIES}) add_dependencies(check ${thename}) - add_test(${thename} ${thename}) + add_test(NAME ${thename} COMMAND ${thename}${CMAKE_EXECUTABLE_SUFFIX}) endmacro() macro(add_ginac_timing thename)