From d10b06dc4fd69a8b9bc0baf42f88f88c39ed17e4 Mon Sep 17 00:00:00 2001 From: Nat Goodspeed <nat@lindenlab.com> Date: Mon, 19 Aug 2019 10:00:09 -0400 Subject: [PATCH] DRTVWR-493: When a test fails due to exception, display exception. --- indra/test/test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/indra/test/test.cpp b/indra/test/test.cpp index d4cd4b951e7..b14c2eb255a 100644 --- a/indra/test/test.cpp +++ b/indra/test/test.cpp @@ -253,7 +253,7 @@ class LLTestCallback : public tut::callback break; case tut::test_result::ex: ++mFailedTests; - out << "exception"; + out << "exception: " << tr.exception_typeid; break; case tut::test_result::warn: ++mFailedTests; @@ -264,7 +264,7 @@ class LLTestCallback : public tut::callback out << "abnormal termination"; break; case tut::test_result::skip: - ++mSkippedTests; + ++mSkippedTests; out << "skipped known failure"; break; default: -- GitLab