Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add new entry in Release_Notes.
[simgrid.git] / teshsuite / python / corrupt-stack / corrupt-stack.py
index dd14728f1e00c72f8f7936122bf140e515dcda06..5abb24f195f4ef5fe64eb7be38c1fa5f6d5f5434 100644 (file)
@@ -1,41 +1,43 @@
-# Copyright (c) 2019-2020. The SimGrid Team. All rights reserved.
+# Copyright (c) 2019-2023. 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.
 
-# Second failing example for bug #9 on Framagit (Python bindings crashing)
-#
-# An intricate recursion is used to make the crash happen.
+"""
+Second failing example for bug #9 on Framagit (Python bindings crashing)
+
+An intricate recursion is used to make the crash happen.
+"""
 
 import sys
 from simgrid import Engine, this_actor
 
 def do_sleep1(i, dur):
     if i > 0:
-        this_actor.info("Iter {:d}".format(i))
+        this_actor.info("1-Iter {:d}".format(i))
         do_sleep3(i - 1, dur)
         this_actor.sleep_for(dur)
-        this_actor.info("Mid ({:d})".format(i))
+        this_actor.info("1-Mid ({:d})".format(i))
         do_sleep3(int(i / 2), dur)
-        this_actor.info("Done ({:d})".format(i))
+        this_actor.info("1-Done ({:d})".format(i))
 
 def do_sleep3(i, dur):
     if i > 0:
-        this_actor.info("Iter {:d}".format(i))
+        this_actor.info("3-Iter {:d}".format(i))
         do_sleep5(i - 1, dur)
         this_actor.sleep_for(dur)
-        this_actor.info("Mid ({:d})".format(i))
+        this_actor.info("3-Mid ({:d})".format(i))
         do_sleep5(int(i / 2), dur)
-        this_actor.info("Done ({:d})".format(i))
+        this_actor.info("3-Done ({:d})".format(i))
 
 def do_sleep5(i, dur):
     if i > 0:
-        this_actor.info("Iter {:d}".format(i))
+        this_actor.info("5-Iter {:d}".format(i))
         do_sleep1(i - 1, dur)
         this_actor.sleep_for(dur)
-        this_actor.info("Mid ({:d})".format(i))
+        this_actor.info("5-Mid ({:d})".format(i))
         do_sleep1(int(i / 2), dur)
-        this_actor.info("Done ({:d})".format(i))
+        this_actor.info("5-Done ({:d})".format(i))
 
 def sleeper1():
     do_sleep1(16, 1)