Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
add a broken test
[simgrid.git] / teshsuite / s4u / actor-autorestart / actor-autorestart.cpp
diff --git a/teshsuite/s4u/actor-autorestart/actor-autorestart.cpp b/teshsuite/s4u/actor-autorestart/actor-autorestart.cpp
new file mode 100644 (file)
index 0000000..5962c5b
--- /dev/null
@@ -0,0 +1,48 @@
+/* Copyright (c) 2017. 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"
+
+XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_test, "Messages specific for this s4u example");
+
+static void dummy()
+{
+  XBT_INFO("I start");
+  simgrid::s4u::this_actor::sleep_for(200);
+  XBT_INFO("I stop");
+}
+
+static void autostart()
+{
+  simgrid::s4u::Host* host = simgrid::s4u::Host::by_name("Fafard");
+  XBT_INFO("starting a dummy process on %s ", host->get_cname());
+
+  simgrid::s4u::ActorPtr dummy_actor = simgrid::s4u::Actor::create("Dummy", host, dummy);
+  dummy_actor->set_auto_restart(true);
+
+  simgrid::s4u::this_actor::sleep_for(50);
+
+  XBT_INFO("powering off %s", host->get_cname());
+  host->turn_off();
+
+  simgrid::s4u::this_actor::sleep_for(10);
+
+  XBT_INFO("powering on %s", host->get_cname());
+  host->turn_on();
+  simgrid::s4u::this_actor::sleep_for(200);
+}
+
+int main(int argc, char* argv[])
+{
+  simgrid::s4u::Engine e(&argc, argv);
+  e.load_platform(argv[1]);
+
+  simgrid::s4u::Actor::create("Autostart", simgrid::s4u::Host::by_name("Tremblay"), autostart);
+
+  e.run();
+  XBT_INFO("Simulation time %g", e.get_clock());
+
+  return 0;
+}