diff options
| author | Nat Goodspeed <nat@lindenlab.com> | 2023-01-06 17:05:37 -0500 | 
|---|---|---|
| committer | Nat Goodspeed <nat@lindenlab.com> | 2023-07-13 12:47:58 -0400 | 
| commit | 2f39489f2cdafed08c13d5011d9538b17e64d345 (patch) | |
| tree | 7403116f4fc47e2c761893dc2bac84eec1a25063 /indra | |
| parent | a02ccbf1b81549cd44ff5088c94dbb5fc756fea0 (diff) | |
DRTVWR-558: Demangle names of exceptions reported by TUT tests.
(cherry picked from commit 2ffbadc7a1275f662eb97ff9ce163a18cdb62c7c)
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/test/test.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/indra/test/test.cpp b/indra/test/test.cpp index bb48216b2b..1161a6d8e4 100644 --- a/indra/test/test.cpp +++ b/indra/test/test.cpp @@ -259,7 +259,7 @@ public:  				break;  			case tut::test_result::ex:  				++mFailedTests; -				out << "exception: " << tr.exception_typeid; +				out << "exception: " << LLError::Log::demangle(tr.exception_typeid.c_str());  				break;  			case tut::test_result::warn:  				++mFailedTests; | 
