summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/tests/logging.cpp
diff options
context:
space:
mode:
authorCharles E. Rolke <chug@apache.org>2012-03-09 20:02:33 +0000
committerCharles E. Rolke <chug@apache.org>2012-03-09 20:02:33 +0000
commit35abed69dfd8972b15be07c3d8863cc0c7b0a1f6 (patch)
treed5106ae15787839b4d8948c9677557c390d73f53 /qpid/cpp/src/tests/logging.cpp
parent6c101f2b7ca22619dc4c0874f918c4654f6bbc89 (diff)
downloadqpid-python-35abed69dfd8972b15be07c3d8863cc0c7b0a1f6.tar.gz
QPID-3891 C++ Broker --log-function is too chatty.
Print only class-qualified function names and no args. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1299015 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/logging.cpp')
-rw-r--r--qpid/cpp/src/tests/logging.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/qpid/cpp/src/tests/logging.cpp b/qpid/cpp/src/tests/logging.cpp
index fc55d642c3..dcecf0b54c 100644
--- a/qpid/cpp/src/tests/logging.cpp
+++ b/qpid/cpp/src/tests/logging.cpp
@@ -29,6 +29,7 @@
#endif
#include <boost/test/floating_point_comparison.hpp>
+#include <boost/algorithm/string/predicate.hpp>
#include <boost/format.hpp>
#include "unit_test.h"
@@ -176,7 +177,9 @@ QPID_AUTO_TEST_CASE(testLoggerFormat) {
l.format(Logger::FUNCTION);
QPID_LOG(critical, "foo");
- BOOST_CHECK_EQUAL(string(BOOST_CURRENT_FUNCTION) + ": foo\n", out->last());
+ BOOST_CHECK( ends_with( out->last(), ": foo\n"));
+ string name = out->last().substr(0, out->last().length() - 6);
+ BOOST_CHECK( contains( string(BOOST_CURRENT_FUNCTION), name));
l.format(Logger::LEVEL);
QPID_LOG(critical, "foo");