Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
slightly change the output of this broken test
[simgrid.git] / teshsuite / s4u / actor-autorestart / actor-autorestart.cpp
index b4718e2..47e132a 100644 (file)
@@ -13,10 +13,10 @@ static void dummy()
   XBT_INFO("I start");
   try {
     simgrid::s4u::this_actor::sleep_for(200);
+    XBT_INFO("I stop");
   } catch (xbt_ex& e) {
     if (e.category == host_error) {
-      XBT_INFO("The host has died ... as expected.");
-      XBT_INFO("I stop");
+      XBT_DEBUG("The host has died ... as expected. This actor silently stops");
     } else {
       XBT_ERROR("An unexpected exception has been raised.");
       throw;