mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-11 16:32:14 -06:00
CTest: Prefer normative terms to express subprocess failures
Issue: #21004
This commit is contained in:
committed by
Brad King
parent
c7b7547d8d
commit
c83919d193
@@ -545,17 +545,17 @@ std::string cmProcess::GetExitExceptionString()
|
||||
# endif
|
||||
# ifdef SIGABRT
|
||||
case SIGABRT:
|
||||
exception_str = "Child aborted";
|
||||
exception_str = "Subprocess aborted";
|
||||
break;
|
||||
# endif
|
||||
# ifdef SIGKILL
|
||||
case SIGKILL:
|
||||
exception_str = "Child killed";
|
||||
exception_str = "Subprocess killed";
|
||||
break;
|
||||
# endif
|
||||
# ifdef SIGTERM
|
||||
case SIGTERM:
|
||||
exception_str = "Child terminated";
|
||||
exception_str = "Subprocess terminated";
|
||||
break;
|
||||
# endif
|
||||
# ifdef SIGHUP
|
||||
|
||||
@@ -2906,7 +2906,7 @@ ${CMake_SOURCE_DIR}/Utilities/Release/push.bash --dir dev -- '${CMake_BUILD_NIGH
|
||||
PASS_REGULAR_EXPRESSION "Failed")
|
||||
else()
|
||||
set_tests_properties(CTestTestCrash PROPERTIES
|
||||
PASS_REGULAR_EXPRESSION "(Illegal|SegFault|Child aborted)")
|
||||
PASS_REGULAR_EXPRESSION "(Illegal|SegFault|Subprocess aborted)")
|
||||
endif()
|
||||
|
||||
configure_file(
|
||||
|
||||
Reference in New Issue
Block a user