Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
group some internal tests together
[simgrid.git] / teshsuite / kernel / stack-overflow / stack-overflow.cpp
diff --git a/teshsuite/kernel/stack-overflow/stack-overflow.cpp b/teshsuite/kernel/stack-overflow/stack-overflow.cpp
new file mode 100644 (file)
index 0000000..ef98226
--- /dev/null
@@ -0,0 +1,53 @@
+/* stack_overflow -- simple program generating a stack overflow             */
+
+/* Copyright (c) 2014-2021. 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/Actor.hpp"
+#include "simgrid/s4u/Engine.hpp"
+#include "xbt/log.h"
+
+#include <string>
+
+XBT_LOG_NEW_DEFAULT_CATEGORY(test, "my log messages");
+
+static unsigned collatz(unsigned c0, unsigned n)
+{
+  unsigned x;
+  if (n == 0) {
+    x = c0;
+  } else {
+    x = collatz(c0, n - 1);
+    if (x % 2 == 0)
+      x = x / 2;
+    else
+      x = 3 * x + 1;
+  }
+  return x;
+}
+
+static void master()
+{
+  XBT_INFO("Launching our nice bugged recursive function...");
+  unsigned i = 1;
+  while (i <= 0x80000000U) {
+    i *= 2;
+    unsigned res = collatz(i, i);
+    XBT_VERB("collatz(%u, %u) returned %u", i, i, res);
+  }
+}
+
+int main(int argc, char* argv[])
+{
+  simgrid::s4u::Engine e(&argc, argv);
+
+  xbt_assert(argc == 2, "Usage: %s platform.xml\n", argv[0]);
+
+  e.load_platform(argv[1]);
+  simgrid::s4u::Actor::create("master", e.host_by_name("Tremblay"), master);
+  e.run();
+
+  return 0;
+}