Different versions of cygwin report differet messages for cygwin

For cygwin pass the badexe test if either ***Failed or BAD_COMMAND
show up in the output of the test.
This commit is contained in:
Bill Hoffman 2010-02-26 13:45:23 -05:00
parent b4d27dc041
commit ab650f095f
1 changed files with 2 additions and 2 deletions

View File

@ -1268,10 +1268,10 @@ ${CMake_BINARY_DIR}/bin/cmake -DVERSION=master -P ${CMake_SOURCE_DIR}/Utilities/
--output-log "${CMake_BINARY_DIR}/Tests/CTestTestBadExe/testOutput.log"
)
SET(CTestTestBadExe_REGEX "BAD_COMMAND")
# cygwin can not be made to produce a BAD_COMMAND error
# some cygwin can not be made to produce a BAD_COMMAND error
# the best we can get from it is a failed test
IF(CYGWIN)
SET(CTestTestBadExe_REGEX "\\*\\*\\*Failed")
SET(CTestTestBadExe_REGEX "(\\*\\*\\*Failed)|BAD_COMMAND")
ENDIF()
SET_TESTS_PROPERTIES(CTestTestBadExe PROPERTIES
PASS_REGULAR_EXPRESSION "${CTestTestBadExe_REGEX}")