summaryrefslogtreecommitdiff
path: root/indra/test/test.cpp
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2019-08-19 10:00:09 -0400
committerNat Goodspeed <nat@lindenlab.com>2019-08-19 10:00:09 -0400
commitd10b06dc4fd69a8b9bc0baf42f88f88c39ed17e4 (patch)
tree2c1e73e3625f224e480a4e7a6ea5d66164c09c24 /indra/test/test.cpp
parent0e6a6c7775816a338801c1a74a5741b2eabe801b (diff)
DRTVWR-493: When a test fails due to exception, display exception.
Diffstat (limited to 'indra/test/test.cpp')
-rw-r--r--indra/test/test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/test/test.cpp b/indra/test/test.cpp
index d4cd4b951e..b14c2eb255 100644
--- a/indra/test/test.cpp
+++ b/indra/test/test.cpp
@@ -253,7 +253,7 @@ public:
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 @@ public:
out << "abnormal termination";
break;
case tut::test_result::skip:
- ++mSkippedTests;
+ ++mSkippedTests;
out << "skipped known failure";
break;
default: