SEGFAULT does not work on watcom with ctest, so don't expect it to...
This commit is contained in:
parent
5a2f24856e
commit
815ec522ee
|
@ -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"
|
||||
)
|
||||
# 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"
|
||||
|
|
Loading…
Reference in New Issue