summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Tests/CMakeLists.txt10
1 files changed, 8 insertions, 2 deletions
diff --git a/Tests/CMakeLists.txt b/Tests/CMakeLists.txt
index 55095bf..ddebfc6 100644
--- a/Tests/CMakeLists.txt
+++ b/Tests/CMakeLists.txt
@@ -1071,8 +1071,14 @@ ${CMake_BINARY_DIR}/bin/cmake -DVERSION=CVS -P ${CMake_SOURCE_DIR}/Utilities/Rel
-S "${CMake_BINARY_DIR}/Tests/CTestTestCrash/test.cmake" -V
--output-log "${CMake_BINARY_DIR}/Tests/CTestTestCrash/testOutput.log"
)
- SET_TESTS_PROPERTIES(CTestTestCrash PROPERTIES
- PASS_REGULAR_EXPRESSION "SegFault")
+ # with watcom the SEGFAULT is not found, it just fails
+ IF(CMAKE_TEST_GENERATOR MATCHES "Watcom WMake")
+ SET_TESTS_PROPERTIES(CTestTestCrash PROPERTIES
+ PASS_REGULAR_EXPRESSION "Failed")
+ ELSE(CMAKE_TEST_GENERATOR MATCHES "Watcom WMake")
+ SET_TESTS_PROPERTIES(CTestTestCrash PROPERTIES
+ PASS_REGULAR_EXPRESSION "SegFault")
+ ENDIF(CMAKE_TEST_GENERATOR MATCHES "Watcom WMake")
CONFIGURE_FILE(
"${CMake_SOURCE_DIR}/Tests/CTestTestParallel/test.cmake.in"