Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
smpi: fix issue with message IDs. In case of persistent request reused multiple times...
[simgrid.git] / teshsuite / kernel / context-defaults / context-defaults.cpp
index af1722ea670a08fc2ff4eeb5f3b32a0b5b5db686..4667ee7eabf7e3cdc79439c459bbb6318333d636 100644 (file)
@@ -1,6 +1,6 @@
 /* check_defaults -- simple program displaying its context factory          */
 
-/* Copyright (c) 2013-2021. The SimGrid Team.
+/* Copyright (c) 2013-2023. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
@@ -12,8 +12,7 @@
 int main(int argc, char* argv[])
 {
   xbt_log_control_set("root.fmt:[%c/%p]%e%m%n");
-  xbt_log_control_set("simix_context.threshold:verbose");
-  simgrid::s4u::Engine e(&argc, argv);
-  e.get_clock(); // just to use the engine once.
+  xbt_log_control_set("ker_context.threshold:verbose");
+  XBT_ATTRIB_UNUSED simgrid::s4u::Engine e(&argc, argv);
   return 0;
 }