Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Easy Sonar smells.
[simgrid.git] / teshsuite / s4u / issue71 / issue71.cpp
index cc1a018..6333844 100644 (file)
@@ -1,26 +1,29 @@
+/* Copyright (c) 2021-2022. The SimGrid Team. All rights reserved.               */
+
+/* This program is free software; you can redistribute it and/or modify it
+ * under the terms of the license (GNU LGPL) which comes with this package. */
+
 #include <simgrid/s4u.hpp>
 #include <vector>
-
-using namespace std;
-using namespace simgrid;
+#include <iostream>
 
 static void runner()
 {
-  auto e                    = s4u::Engine::get_instance();
+  auto e                    = simgrid::s4u::Engine::get_instance();
   simgrid::s4u::Host* host0 = e->host_by_name("c1_0");
   simgrid::s4u::Host* host1 = e->host_by_name("c2_0");
 
   std::vector<double> comp = {1e6, 1e6};
   std::vector<double> comm = {1, 2, 3, 4};
 
-  vector<simgrid::s4u::Host*> h1 = {host0, host1};
+  std::vector<simgrid::s4u::Host*> h1 = {host0, host1};
   simgrid::s4u::this_actor::parallel_execute(h1, comp, comm);
 }
 
 int main(int argc, char* argv[])
 {
-  s4u::Engine e(&argc, argv);
-  e.set_config("host/model:ptask_L07");
+  simgrid::s4u::Engine e(&argc, argv);
+  simgrid::s4u::Engine::set_config("host/model:ptask_L07");
 
   xbt_assert(argc == 2,
              "\nUsage: %s platform_ok.xml\n"
@@ -28,10 +31,14 @@ int main(int argc, char* argv[])
              argv[0], argv[0]);
 
   const char* platform_file = argv[1];
-  e.load_platform(platform_file);
 
-  simgrid::s4u::Actor::create("actor", e.host_by_name("c1_0"), runner);
+  try {
+    e.load_platform(platform_file);
+    simgrid::s4u::Actor::create("actor", e.host_by_name("c1_0"), runner);
+    e.run();
+  } catch (const simgrid::AssertionError& e) {
+    std::cout << e.what() << "\n";
+  }
 
-  e.run();
   return 0;
 }