diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2019-08-20 12:50:43 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2019-08-20 12:50:43 -0400 |
commit | d13b4d18030ec5748adf7960a3a5ce367440f96e (patch) | |
tree | 7cb6467f76358ef9922ff22266be8f85d1df0389 /indra/test | |
parent | be7713cab26032d6f5f6a739122d955df0955092 (diff) | |
parent | 5b5eb55f0c999a55cd0df1dd983629967d447b6c (diff) |
Automated merge with ssh://bitbucket.org/andreykproductengine/drtvwr-493
Diffstat (limited to 'indra/test')
-rw-r--r-- | indra/test/test.cpp | 4 |
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: |