From 9a71c91bd3617da7496dbc1ed524f26e3155972b Mon Sep 17 00:00:00 2001 From: Arnaud Giersch Date: Thu, 4 Jul 2019 15:21:02 +0200 Subject: [PATCH] Enable test for simgrid/simgrid#27. --- teshsuite/s4u/activity-lifecycle/activity-lifecycle.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/teshsuite/s4u/activity-lifecycle/activity-lifecycle.cpp b/teshsuite/s4u/activity-lifecycle/activity-lifecycle.cpp index 3bf1398947..11feb0c401 100644 --- a/teshsuite/s4u/activity-lifecycle/activity-lifecycle.cpp +++ b/teshsuite/s4u/activity-lifecycle/activity-lifecycle.cpp @@ -499,7 +499,7 @@ static void test_link_off_during_wait_any() receiver_got_base_execution = true; } xbt_assert(receiver_got_network_failure_execution, "The receiver should have gotten a NetworkFailureException"); - xbt_assert(not receiver_got_network_failure_execution, "The receiver should not have gotten a base Exception"); + xbt_assert(not receiver_got_base_execution, "The receiver should not have gotten a base Exception"); }); simgrid::s4u::ActorPtr sender = simgrid::s4u::Actor::create("sender", all_hosts[2], [&start]() { @@ -517,7 +517,7 @@ static void test_link_off_during_wait_any() sender_got_base_execution = true; } xbt_assert(sender_got_network_failure_execution, "The sender should have gotten a NetworkFailureException"); - xbt_assert(not sender_got_network_failure_execution, "The sender should not have gotten a base Exception"); + xbt_assert(not sender_got_base_execution, "The sender should not have gotten a base Exception"); }); simgrid::s4u::this_actor::sleep_for(2.0); @@ -554,7 +554,7 @@ static void main_dispatcher() run_test("comm turn link off before send/recv", test_link_off_before_send_recv); run_test("comm turn link off between send/recv", test_link_off_between_send_recv); run_test("comm turn link off during transfer", test_link_off_during_transfer); -// run_test("comm turn link off during wait_any", test_link_off_during_wait_any); + run_test("comm turn link off during wait_any", test_link_off_during_wait_any); } int main(int argc, char* argv[]) -- 2.20.1