Skip to content

Commit

Permalink
Deactivate complex/quaternion tests
Browse files Browse the repository at this point in the history
complex and quaternion are being moved over to the KYOSU library (https://github.com/jfalcou/kyosu)
They are still preent in EVE for tyh eiterim but tests are not required to be run there anymore.
  • Loading branch information
jfalcou authored Sep 5, 2023
1 parent f56aa29 commit 4d4ff18
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
14 changes: 7 additions & 7 deletions test/doc/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,17 @@ glob_unit("doc" ${doc_root} "combinatorial/conversion/*.cpp" )
##==================================================================================================
## GLOB and process complex doc tests
##==================================================================================================
add_custom_target(doc.complex.exe )
add_dependencies(doc.exe doc.complex.exe )
glob_unit("doc" ${doc_root} "complex/regular/*.cpp" )
glob_unit("doc" ${doc_root} "complex/pedantic/*.cpp" )
# add_custom_target(doc.complex.exe )
# add_dependencies(doc.exe doc.complex.exe )
# glob_unit("doc" ${doc_root} "complex/regular/*.cpp" )
# glob_unit("doc" ${doc_root} "complex/pedantic/*.cpp" )

##==================================================================================================
## GLOB and process quaternion doc tests
##==================================================================================================
add_custom_target(doc.quaternion.exe )
add_dependencies(doc.exe doc.quaternion.exe )
glob_unit("doc" ${doc_root} "quaternion/regular/*.cpp" )
# add_custom_target(doc.quaternion.exe )
# add_dependencies(doc.exe doc.quaternion.exe )
# glob_unit("doc" ${doc_root} "quaternion/regular/*.cpp" )

##==================================================================================================
## GLOB and process core doc tests
Expand Down
12 changes: 6 additions & 6 deletions test/unit/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@ add_custom_target(unit.bessel.exe )
add_dependencies(unit.exe unit.bessel.exe )
glob_unit("unit" ${unit_root} "module/bessel/*.cpp" )

add_custom_target(unit.complex.exe )
add_dependencies(unit.exe unit.complex.exe )
glob_unit("unit" ${unit_root} "module/complex/*.cpp" )
# add_custom_target(unit.complex.exe )
# add_dependencies(unit.exe unit.complex.exe )
# glob_unit("unit" ${unit_root} "module/complex/*.cpp" )

add_custom_target(unit.elliptic.exe )
add_dependencies(unit.exe unit.elliptic.exe )
Expand All @@ -104,9 +104,9 @@ add_custom_target(unit.polynomial.exe )
add_dependencies(unit.exe unit.polynomial.exe )
glob_unit("unit" ${unit_root} "module/polynomial/*.cpp" )

add_custom_target(unit.quaternion.exe )
add_dependencies(unit.exe unit.quaternion.exe )
glob_unit("unit" ${unit_root} "module/quaternion/*.cpp" )
# add_custom_target(unit.quaternion.exe )
# add_dependencies(unit.exe unit.quaternion.exe )
# glob_unit("unit" ${unit_root} "module/quaternion/*.cpp" )

add_custom_target(unit.special.exe )
add_dependencies(unit.exe unit.special.exe )
Expand Down

0 comments on commit 4d4ff18

Please sign in to comment.