Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add dependency between same actor for tests
[simgrid.git] / src / mc / explo / udpor / History_test.cpp
index 961aaaa2323dfa52c41429eacc4c99daa60d3b9c..55065a3e915e486ceab7798a64fef02c9b8cb90f 100644 (file)
@@ -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;
-  }
 }