diff options
author | callum_linden <none@none> | 2014-10-22 16:00:31 -0700 |
---|---|---|
committer | callum_linden <none@none> | 2014-10-22 16:00:31 -0700 |
commit | e0677352f849088eeba40abe375e591801319215 (patch) | |
tree | b78b50b030d90ac0b32edc80d624230cd7189c6b /indra/llcommon | |
parent | 5f004996f27e4cfea6101ddd5c128b0f9adc7ee3 (diff) | |
parent | 25dcb53aa229cf980449416bd59e42bd265041d0 (diff) |
Merge with head
Diffstat (limited to 'indra/llcommon')
-rwxr-xr-x | indra/llcommon/tests/llerror_test.cpp | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/indra/llcommon/tests/llerror_test.cpp b/indra/llcommon/tests/llerror_test.cpp index 2939ae1ece..1ac72d13bf 100755 --- a/indra/llcommon/tests/llerror_test.cpp +++ b/indra/llcommon/tests/llerror_test.cpp @@ -38,6 +38,15 @@ namespace { +# pragma clang diagnostic ignored "-Wunused-function" + void test_that_error_h_includes_enough_things_to_compile_a_message() + { + LL_INFOS() << "!" << LL_ENDL; + } +} + +namespace +{ static bool fatalWasCalled; void fatalCall(const std::string&) { fatalWasCalled = true; } } @@ -383,8 +392,8 @@ namespace if (n1 == std::string::npos) { std::stringstream ss; - ss << message << ": " << "expected to find a copy of " << expected - << " in actual " << actual; + ss << message << ": " << "expected to find a copy of '" << expected + << "' in actual '" << actual << "'"; throw tut::failure(ss.str().c_str()); } } |