summary refs log tree commit diff stats
path: root/tests/threads/trecursive_actor.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/threads/trecursive_actor.nim')
-rw-r--r--tests/threads/trecursive_actor.nim20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/threads/trecursive_actor.nim b/tests/threads/trecursive_actor.nim
deleted file mode 100644
index d7072aa53..000000000
--- a/tests/threads/trecursive_actor.nim
+++ /dev/null
@@ -1,20 +0,0 @@
-discard """
-  disabled: yes
-  outputsub: "0"
-"""
-
-import actors
-
-var
-  a: TActorPool[int, void]
-createActorPool(a)
-
-proc task(i: int) {.thread.} =
-  echo i
-  if i != 0: a.spawn (i-1, task)
-
-# count from 9 till 0 and check 0 is somewhere in the output
-a.spawn(9, task)
-a.join()
-
-