X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Utils%2FLogger.test.cc;h=4498bcf5b3d3e015d0d6184ec8f9fe93412845c3;hb=3d5b1045dc2531f239a3af4a8f3b17b1fe31549c;hp=3efa3d5d60945806f687c09684d1f62e06f4edd7;hpb=f53813669f2da13d0365950b5087cfe1d3cc829b;p=senf.git diff --git a/Utils/Logger.test.cc b/Utils/Logger.test.cc index 3efa3d5..4498bcf 100644 --- a/Utils/Logger.test.cc +++ b/Utils/Logger.test.cc @@ -1,4 +1,4 @@ -// Copyright (C) 2007 +// Copyright (C) 2007 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS) // Kompetenzzentrum fuer Satelitenkommunikation (SatCom) // Stefan Bund @@ -49,8 +49,8 @@ BOOST_AUTO_UNIT_TEST(logger) SENF_LOG((LogFoo) ("Another log message: " << 10)); SENF_LOG_BLOCK((senf::log::Debug) (senf::log::WARNING) ({ - log << "Last message"; - log << " continued here"; + log << "Last message"; + log << " continued here"; })); BOOST_CHECK_EQUAL( logstream.str(), "Log message\nAnother log message: 10\nLast message continued here\n" ); @@ -64,5 +64,8 @@ BOOST_AUTO_UNIT_TEST(logger) // mode: c++ // fill-column: 100 // c-file-style: "senf" +// indent-tabs-mode: nil // ispell-local-dictionary: "american" +// compile-command: "scons -u test" +// comment-column: 40 // End: