Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
MC: tell the user about how to use the replay path in case of problem
[simgrid.git] / src / mc / explo / DFSExplorer.cpp
index e0628c0..3af39bc 100644 (file)
@@ -49,7 +49,9 @@ void DFSExplorer::check_non_termination(const State* current_state)
       XBT_INFO("Counter-example execution trace:");
       for (auto const& s : get_textual_trace())
         XBT_INFO("  %s", s.c_str());
-      XBT_INFO("Path = %s", get_record_trace().to_string().c_str());
+      XBT_INFO("You can debug the problem (and see the whole details) by rerunning out of simgrid-mc with "
+               "--cfg=model-check/replay:'%s'",
+               get_record_trace().to_string().c_str());
       log_state();
 
       throw TerminationError();