From: Arnaud Giersch Date: Wed, 16 Jan 2019 17:55:21 +0000 (+0100) Subject: SET_TESTS_PROPERTIES Can not find test to add properties to. X-Git-Tag: v3_22~545^2 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/323d027b0adb6ee03434a4246a5bf803e58a73ba?ds=sidebyside SET_TESTS_PROPERTIES Can not find test to add properties to. Test stack-overflow-thread has been removed. --- diff --git a/teshsuite/simix/CMakeLists.txt b/teshsuite/simix/CMakeLists.txt index af6faa80c1..2af3e96212 100644 --- a/teshsuite/simix/CMakeLists.txt +++ b/teshsuite/simix/CMakeLists.txt @@ -35,10 +35,10 @@ endif() foreach (factory raw thread boost ucontext) string (TOUPPER have_${factory}_contexts VARNAME) + if (release AND ${VARNAME} AND (WIN32 OR CMAKE_SYSTEM_NAME MATCHES "Darwin")) + SET_TESTS_PROPERTIES(stack-overflow-${factory} PROPERTIES WILL_FAIL true) + endif() if (${factory} STREQUAL "thread" OR ${VARNAME}) - if (release AND (WIN32 OR CMAKE_SYSTEM_NAME MATCHES "Darwin")) - SET_TESTS_PROPERTIES(stack-overflow-${factory} PROPERTIES WILL_FAIL true) - endif() ADD_TESH(tesh-simix-factory-${factory} --cfg contexts/factory:${factory} --setenv bindir=${CMAKE_BINARY_DIR}/teshsuite/simix/check-defaults --cd ${CMAKE_HOME_DIRECTORY}/teshsuite/simix/check-defaults factory_${factory}.tesh) endif() endforeach()