diff options
author | Robert Maynard <robert.maynard@kitware.com> | 2020-07-23 12:59:41 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-07-27 14:32:21 (GMT) |
commit | c83919d19303af11f3bd24fe3306e0f9898032ef (patch) | |
tree | 1225569fe03069eee501d959286431a12fd2b61b /Source/CTest | |
parent | c7b7547d8da6b9a4225d111440d0cf6c2f55914d (diff) | |
download | CMake-c83919d19303af11f3bd24fe3306e0f9898032ef.zip CMake-c83919d19303af11f3bd24fe3306e0f9898032ef.tar.gz CMake-c83919d19303af11f3bd24fe3306e0f9898032ef.tar.bz2 |
CTest: Prefer normative terms to express subprocess failures
Issue: #21004
Diffstat (limited to 'Source/CTest')
-rw-r--r-- | Source/CTest/cmProcess.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/CTest/cmProcess.cxx b/Source/CTest/cmProcess.cxx index a549117..9ee1c17 100644 --- a/Source/CTest/cmProcess.cxx +++ b/Source/CTest/cmProcess.cxx @@ -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 |