Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
please sonar: nothing before the includes
authorMartin Quinson <martin.quinson@loria.fr>
Mon, 15 May 2017 08:55:25 +0000 (10:55 +0200)
committerMartin Quinson <martin.quinson@loria.fr>
Tue, 16 May 2017 18:19:42 +0000 (20:19 +0200)
src/surf/trace_mgr_test.cpp

index 4b81b68..c498ee6 100644 (file)
@@ -4,22 +4,22 @@
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
 #define BOOST_TEST_MODULE Trace Manager tests
-
 bool init_unit_test(); // boost forget to give this prototype on NetBSD, which does not fit our paranoid flags
 #define BOOST_TEST_DYN_LINK
 #define BOOST_TEST_NO_MAIN
 #include <boost/test/unit_test.hpp>
-namespace utf = boost::unit_test;
 
 #include "src/surf/surf_interface.hpp"
 #include "src/surf/trace_mgr.hpp"
-namespace tmgr = simgrid::trace_mgr;
 
 #include "xbt/log.h"
 #include "xbt/misc.h"
 
 #include <math.h>
 
+namespace utf  = boost::unit_test;
+namespace tmgr = simgrid::trace_mgr;
+
 XBT_LOG_NEW_DEFAULT_CATEGORY(unit, "Unit tests of the Trace Manager");
 
 double thedate;