X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/cf2a7c6a685a2a56113882f9cf278849e315fd32..ec28fefa54873e9f38f7005c4ab6d0028f69fa99:/src/surf/trace_mgr_test.cpp diff --git a/src/surf/trace_mgr_test.cpp b/src/surf/trace_mgr_test.cpp index 30c53c6ef8..4bdb1d7574 100644 --- a/src/surf/trace_mgr_test.cpp +++ b/src/surf/trace_mgr_test.cpp @@ -1,24 +1,24 @@ -/* Copyright (c) 2017. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2017-2018. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * 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 -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 +#include + +namespace utf = boost::unit_test; +namespace tmgr = simgrid::trace_mgr; XBT_LOG_NEW_DEFAULT_CATEGORY(unit, "Unit tests of the Trace Manager"); @@ -28,7 +28,8 @@ public: explicit MockedResource() : simgrid::surf::Resource(nullptr, "fake", nullptr) {} void apply_event(tmgr_trace_event_t event, double value) { - XBT_VERB("t=%.1f: Change value to %lg (idx: %d)", thedate, value, event->idx); + XBT_VERB("t=%.1f: Change value to %lg (idx: %u)", thedate, value, event->idx); + tmgr_trace_event_unref(&event); } bool isUsed() { return true; } }; @@ -38,7 +39,7 @@ static void trace2vector(const char* str, std::vector* whereto simgrid::trace_mgr::trace* trace = tmgr_trace_new_from_string("TheName", str, 0); XBT_VERB("---------------------------------------------------------"); XBT_VERB("data>>\n%s<event_list) + for (auto const& evt : trace->event_list) XBT_VERB("event: d:%lg v:%lg", evt.date_, evt.value_); MockedResource daResource; @@ -58,9 +59,10 @@ static void trace2vector(const char* str, std::vector* whereto res->apply_event(it, value); whereto->push_back(tmgr::DatedValue(thedate, value)); } else { - XBT_DEBUG("%.1f: ignore an event (idx: %d)\n", thedate, it->idx); + XBT_DEBUG("%.1f: ignore an event (idx: %u)\n", thedate, it->idx); } } + tmgr_finalize(); } /* Fails in a way that is difficult to test: xbt_assert should become throw @@ -113,7 +115,7 @@ BOOST_AUTO_TEST_CASE(two_evt_loop) std::vector got; trace2vector("1.0 1.0\n" "3.0 3.0\n" - "WAITFOR 2\n", + "LOOPAFTER 2\n", &got); std::vector want; @@ -133,7 +135,7 @@ BOOST_AUTO_TEST_CASE(two_evt_start0_loop) std::vector got; trace2vector("0.0 1\n" "5.0 2\n" - "WAITFOR 5\n", + "LOOPAFTER 5\n", &got); std::vector want;