Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
move a public header in the simgrid/ directory to fight the namespace polution
[simgrid.git] / examples / msg / mc / bugged3.c
index a398f0f..0a21025 100644 (file)
@@ -8,7 +8,7 @@
 /******************************************************************************/
 
 #include <msg/msg.h>
-#include <mc/modelchecker.h>
+#include <simgrid/modelchecker.h>
 
 XBT_LOG_NEW_DEFAULT_CATEGORY(bugged3, "this example");
 
@@ -29,7 +29,7 @@ int server(int argc, char *argv[])
   val1 = (long) MSG_task_get_data(task1);
   XBT_INFO("Received %lu", val1);
 
-  //MC_assert(val1 == 2);
+  MC_assert(val1 == 2);
 
   XBT_INFO("OK");
   return 0;