mirror of
https://github.com/google/googletest.git
synced 2025-04-05 13:35:03 +00:00
Better exception printing for multi-line exceptions
This commit is contained in:
parent
6a5938233b
commit
eff28b5441
1 changed files with 11 additions and 1 deletions
|
@ -2581,7 +2581,17 @@ static std::string FormatCxxExceptionMessage(const char* description,
|
|||
const char* location) {
|
||||
Message message;
|
||||
if (description != nullptr) {
|
||||
message << "C++ exception with description \"" << description << "\"";
|
||||
std::string desc;
|
||||
const char *ch;
|
||||
for(ch=description;*ch!='\0';ch++)
|
||||
{
|
||||
if(*ch=='\n')
|
||||
desc+="\n>";
|
||||
else
|
||||
desc+=*ch;
|
||||
}
|
||||
description=desc.c_str();
|
||||
message << "C++ exception with description \n" << description << "\n";
|
||||
} else {
|
||||
message << "Unknown C++ exception";
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue