Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Display the stack of each actor during a MC replay (unless --log=no_log for the tests)
[simgrid.git] / teshsuite / mc / CMakeLists.txt
index 7d233a5..7d0e351 100644 (file)
@@ -1,27 +1,33 @@
-# MC-only C++ binaries
-foreach(x dwarf dwarf-expression)
-  if (SIMGRID_HAVE_MC)
+if (NOT SIMGRID_HAVE_MC)
+  set(dwarf_disable 1)
+  set(dwarf-expression_disable 1)
+endif()
+
+
+foreach(x dwarf dwarf-expression random-bug mutex-handling)
+
+  if(NOT DEFINED ${x}_sources)
+    set(${x}_sources ${x}/${x}.cpp)
+  endif()
+
+  if(NOT DEFINED ${x}_disable)
     add_executable       (${x}  EXCLUDE_FROM_ALL ${x}/${x}.cpp)
     target_link_libraries(${x}  simgrid)
     set_target_properties(${x}  PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/${x})
     set_property(TARGET ${x} APPEND PROPERTY INCLUDE_DIRECTORIES "${INTERNAL_INCLUDES}")
+    target_compile_options(${x} PRIVATE ${CMAKE_C_DEBUG_FLAGS})
     add_dependencies(tests-mc ${x})
   endif()
 
   set(tesh_files    ${tesh_files}    ${CMAKE_CURRENT_SOURCE_DIR}/${x}/${x}.tesh)
-  set(teshsuite_src ${teshsuite_src} ${CMAKE_CURRENT_SOURCE_DIR}/${x}/${x}.cpp)
-endforeach()
 
-# MC-independent C++ binaries
-foreach(x random-bug mutex-handling)
-  add_executable       (${x}  EXCLUDE_FROM_ALL ${x}/${x}.cpp)
-  target_link_libraries(${x}  simgrid)
-  set_target_properties(${x}  PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/${x})
-  set_property(TARGET ${x} APPEND PROPERTY INCLUDE_DIRECTORIES "${INTERNAL_INCLUDES}")
-  add_dependencies(tests-mc ${x})
+  foreach(file ${${x}_sources})
+    set(teshsuite_src  ${teshsuite_src} ${CMAKE_CURRENT_SOURCE_DIR}/${file})
+  endforeach()
+
+  unset(${x}_sources)
+  unset(${x}_disable)
 
-  set(tesh_files    ${tesh_files}    ${CMAKE_CURRENT_SOURCE_DIR}/${x}/${x}.tesh)
-  set(teshsuite_src ${teshsuite_src} ${CMAKE_CURRENT_SOURCE_DIR}/${x}/${x}.cpp)
 endforeach()
 
 add_executable       (without-mutex-handling EXCLUDE_FROM_ALL mutex-handling/mutex-handling.cpp)