From: Arnaud Giersch Date: Mon, 7 Apr 2014 09:34:53 +0000 (+0200) Subject: stack-overflow tests are expected to fail on win32 too. X-Git-Tag: v3_11~142 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/f300f1885bc90a899e6864159d301a28a0f6b8ba stack-overflow tests are expected to fail on win32 too. --- diff --git a/buildtools/Cmake/AddTests.cmake b/buildtools/Cmake/AddTests.cmake index 106e4c3753..528fe59798 100644 --- a/buildtools/Cmake/AddTests.cmake +++ b/buildtools/Cmake/AddTests.cmake @@ -679,9 +679,9 @@ if(NOT enable_memcheck) ### Declare that we know that some tests are broken ### if(release) - if(CMAKE_SYSTEM_NAME MATCHES "Darwin") - # These tests are known to fail on Mac OS X (the expected error message is - # not shown). + if(WIN32 OR CMAKE_SYSTEM_NAME MATCHES "Darwin") + # These tests are known to fail on Windows and Mac OS X + # (the expected error message is not shown). set_tests_properties(stack-overflow-thread PROPERTIES WILL_FAIL true) if(CONTEXT_UCONTEXT) set_tests_properties(stack-overflow-ucontext PROPERTIES WILL_FAIL true)