Skip to content
Snippets Groups Projects

Refactoring Tensor

Closed laurent soulier requested to merge fix/TensorPIMPL into main
1 file
+ 14
13
Compare changes
  • Side-by-side
  • Inline
+ 14
13
@@ -8,19 +8,20 @@ FetchContent_Declare(
FetchContent_MakeAvailable(Catch2)
#file(GLOB_RECURSE src_files "*.cpp")
set(src_files)
list(APPEND src_files "data/Test_Context.cpp")
list(APPEND src_files "graph/Test_Connector.cpp")
list(APPEND src_files "graph/Test_GraphView.cpp")
#MESSAGE(WARNING "Memory leak in graphMatching/Test_GRegex.cpp")
list(APPEND src_files "graphMatching/Test_GRegex.cpp")
list(APPEND src_files "graphMatching/Test_NodeRegex.cpp")
#MESSAGE(WARNING "Memory leak in graphMatching/Test_SeqStm.cpp")
list(APPEND src_files "graphMatching/Test_SeqStm.cpp")
#MESSAGE(WARNING "Memory leak in graphMatching/Test_StmFactory.cpp")
list(APPEND src_files "graphMatching/Test_StmFactory.cpp")
list(APPEND src_files "operator/Test_GenericOperator.cpp")
# Comment following line and uncomment the next ones to selectively activate tests
file(GLOB_RECURSE src_files "*.cpp")
# set(src_files)
# list(APPEND src_files "data/Test_Context.cpp")
# list(APPEND src_files "graph/Test_Connector.cpp")
# list(APPEND src_files "graph/Test_GraphView.cpp")
# #MESSAGE(WARNING "Memory leak in graphMatching/Test_GRegex.cpp")
# list(APPEND src_files "graphMatching/Test_GRegex.cpp")
# list(APPEND src_files "graphMatching/Test_NodeRegex.cpp")
# #MESSAGE(WARNING "Memory leak in graphMatching/Test_SeqStm.cpp")
# list(APPEND src_files "graphMatching/Test_SeqStm.cpp")
# #MESSAGE(WARNING "Memory leak in graphMatching/Test_StmFactory.cpp")
# list(APPEND src_files "graphMatching/Test_StmFactory.cpp")
# list(APPEND src_files "operator/Test_GenericOperator.cpp")
add_executable(tests${module_name} ${src_files})
Loading