Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
set will fail property for stack overoflow on win and osx
[simgrid.git] / teshsuite / simix / stack_overflow / CMakeLists.txt
index edbbb81..fa7c409 100644 (file)
@@ -1,6 +1,15 @@
 add_executable       (stack_overflow stack_overflow.c)
 target_link_libraries(stack_overflow simgrid)
 
+if(release AND (WIN32 OR CMAKE_SYSTEM_NAME MATCHES "Darwin"))
+  foreach (factory raw thread ucontext)
+    string (TOUPPER have_${factory}_contexts VARNAME)
+    if (${VARNAME})
+      SET_TESTS_PROPERTIES(stack-overflow-${factory} PROPERTIES WILL_FAIL true)
+    endif()
+  endforeach()
+endif()
+
 ADD_TESH_FACTORIES(stack-overflow "thread;ucontext;raw" --setenv bindir=${CMAKE_BINARY_DIR}/teshsuite/simix/stack_overflow --cd ${CMAKE_HOME_DIRECTORY}/teshsuite/simix/stack_overflow stack_overflow.tesh)
 
 set(tesh_files     ${tesh_files}     ${CMAKE_CURRENT_SOURCE_DIR}/stack_overflow.tesh          PARENT_SCOPE)