X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d07bb8e01e3ed51410e8deacb787baa77e6d1341..c312320c2e43da49b536c51a9d19b6ad6d66e489:/src/mc/explo/udpor/History_test.cpp diff --git a/src/mc/explo/udpor/History_test.cpp b/src/mc/explo/udpor/History_test.cpp index 961aaaa232..55065a3e91 100644 --- a/src/mc/explo/udpor/History_test.cpp +++ b/src/mc/explo/udpor/History_test.cpp @@ -18,9 +18,12 @@ TEST_CASE("simgrid::mc::udpor::History: History generation") // | \ \ / / // e3 e4 e5 e7 UnfoldingEvent e1; - UnfoldingEvent e2{&e1}, e6{&e1}; - UnfoldingEvent e3{&e2}, e4{&e2}; - UnfoldingEvent e5{&e2, &e6}, e7{&e6}; + UnfoldingEvent e2{&e1}; + UnfoldingEvent e6{&e1}; + UnfoldingEvent e3{&e2}; + UnfoldingEvent e4{&e2}; + UnfoldingEvent e5{&e2, &e6}; + UnfoldingEvent e7{&e6}; SECTION("History with no events") { @@ -209,9 +212,4 @@ TEST_CASE("simgrid::mc::udpor::History: History generation") REQUIRE(history.contains(&e7)); } } - - SECTION("History with masking configuration") - { - Configuration configuration; - } }