From: Martin Quinson Date: Tue, 8 Mar 2016 23:51:40 +0000 (+0100) Subject: create the test before setting its properties X-Git-Tag: v3_13~462 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/197f1f45fe93f6ac777a176553d63db898df65fb create the test before setting its properties otherwise it fails on travis and appveyor, even if it works pretty well on my machine. --- diff --git a/teshsuite/simix/stack_overflow/CMakeLists.txt b/teshsuite/simix/stack_overflow/CMakeLists.txt index fa7c409607..a3e4bafbc0 100644 --- a/teshsuite/simix/stack_overflow/CMakeLists.txt +++ b/teshsuite/simix/stack_overflow/CMakeLists.txt @@ -1,6 +1,8 @@ add_executable (stack_overflow stack_overflow.c) target_link_libraries(stack_overflow simgrid) +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) + if(release AND (WIN32 OR CMAKE_SYSTEM_NAME MATCHES "Darwin")) foreach (factory raw thread ucontext) string (TOUPPER have_${factory}_contexts VARNAME) @@ -10,8 +12,6 @@ if(release AND (WIN32 OR CMAKE_SYSTEM_NAME MATCHES "Darwin")) 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) set(xml_files ${xml_files} ${CMAKE_CURRENT_SOURCE_DIR}/stack_overflow.xml ${CMAKE_CURRENT_SOURCE_DIR}/stack_overflow_platform.xml PARENT_SCOPE)