diff options
author | Brad King <brad.king@kitware.com> | 2017-11-03 15:23:33 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-11-03 15:23:33 (GMT) |
commit | 701a637e4d0294ad76df7c11244c9b9b2e84716d (patch) | |
tree | 28b0634017c2cb886bc3ff4a16f0a0bd9a0522a2 /Tests | |
parent | 51e0d611f5732c40bf31662a0ba5e43cca0d40a6 (diff) | |
download | CMake-701a637e4d0294ad76df7c11244c9b9b2e84716d.zip CMake-701a637e4d0294ad76df7c11244c9b9b2e84716d.tar.gz CMake-701a637e4d0294ad76df7c11244c9b9b2e84716d.tar.bz2 |
Tests: Fix CTestTestCrash test under ubsan
UBsan causes our test crash to abort instead. Update our regex to
tolerate this.
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/CMakeLists.txt b/Tests/CMakeLists.txt index c25fc44..d2b6969 100644 --- a/Tests/CMakeLists.txt +++ b/Tests/CMakeLists.txt @@ -2830,7 +2830,7 @@ ${CMake_BINARY_DIR}/bin/cmake -DDIR=dev -P ${CMake_SOURCE_DIR}/Utilities/Release PASS_REGULAR_EXPRESSION "Failed") else() set_tests_properties(CTestTestCrash PROPERTIES - PASS_REGULAR_EXPRESSION "(Illegal|SegFault)") + PASS_REGULAR_EXPRESSION "(Illegal|SegFault|Child aborted)") endif() configure_file( |