summaryrefslogtreecommitdiff
path: root/indra/test
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2019-08-20 12:50:43 -0400
committerNat Goodspeed <nat@lindenlab.com>2019-08-20 12:50:43 -0400
commitd13b4d18030ec5748adf7960a3a5ce367440f96e (patch)
tree7cb6467f76358ef9922ff22266be8f85d1df0389 /indra/test
parentbe7713cab26032d6f5f6a739122d955df0955092 (diff)
parent5b5eb55f0c999a55cd0df1dd983629967d447b6c (diff)
Automated merge with ssh://bitbucket.org/andreykproductengine/drtvwr-493
Diffstat (limited to 'indra/test')
-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: