X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Utils%2FDaemon%2FDaemon.test.cc;h=b62d7ba15bfacd06f284c451d8f96ac8b43842ca;hb=bd9f9d3fd6fbcff0112a7bf48ab9284da9576b11;hp=c814ffd6adc2c723901e3e1eac4c1155ff93e4b7;hpb=b76d83f9671e935cbd5f2c6873efae1f75d25dac;p=senf.git diff --git a/Utils/Daemon/Daemon.test.cc b/Utils/Daemon/Daemon.test.cc index c814ffd..b62d7ba 100644 --- a/Utils/Daemon/Daemon.test.cc +++ b/Utils/Daemon/Daemon.test.cc @@ -21,7 +21,7 @@ // 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. /** \file - \brief Daemon.test unit tests */ + \brief Daemon unit tests */ //#include "Daemon.test.hh" //#include "Daemon.test.ih" @@ -34,11 +34,11 @@ #include #include #include "Daemon.hh" -#include "../Utils/Exception.hh" -#include "../Utils/Backtrace.hh" -#include "../Scheduler/Scheduler.hh" +#include "../Exception.hh" +#include "../Backtrace.hh" +#include "../../Scheduler/Scheduler.hh" -#include "../Utils/auto_unit_test.hh" +#include "../auto_unit_test.hh" #include #define prefix_ @@ -151,8 +151,8 @@ BOOST_AUTO_UNIT_TEST(testDaemon) std::stringstream data; data << log.rdbuf(); BOOST_CHECK_EQUAL( data.str(), "Running init()\n(stderr)\nRunning run()\n" ); - BOOST_CHECK_NO_THROW( boost::filesystem::remove("testDaemon.log") ); - BOOST_CHECK_NO_THROW( boost::filesystem::remove("testDaemon.log.1") ); + SENF_CHECK_NO_THROW( boost::filesystem::remove("testDaemon.log") ); + SENF_CHECK_NO_THROW( boost::filesystem::remove("testDaemon.log.1") ); } ///////////////////////////////cc.e////////////////////////////////////////