summary refs log tree commit diff stats
path: root/tests/arc/tasyncleak3.nim
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2020-09-18 11:55:58 +0200
committerGitHub <noreply@github.com>2020-09-18 11:55:58 +0200
commitd19316bbb986a7dd1d6d091173963f6e74c65991 (patch)
tree962eb2e81643561db16e49a4647385dd75b5ac38 /tests/arc/tasyncleak3.nim
parent59b7857167ad458290dc57c4e39ca564b3080e52 (diff)
downloadNim-d19316bbb986a7dd1d6d091173963f6e74c65991.tar.gz
more ORC bugfixes (#15355)
* introduced --define:nimArcIds

* ORC: bugfixes
Diffstat (limited to 'tests/arc/tasyncleak3.nim')
-rw-r--r--tests/arc/tasyncleak3.nim46
1 files changed, 46 insertions, 0 deletions
diff --git a/tests/arc/tasyncleak3.nim b/tests/arc/tasyncleak3.nim
new file mode 100644
index 000000000..c1510895a
--- /dev/null
+++ b/tests/arc/tasyncleak3.nim
@@ -0,0 +1,46 @@
+discard """
+  cmd: "nim c --gc:orc $file"
+  output: "true"
+"""
+
+import strutils
+
+type
+  FutureBase* = ref object of RootObj  ## Untyped future.
+    finished: bool
+    stackTrace: seq[StackTraceEntry] ## For debugging purposes only.
+
+proc newFuture*(): FutureBase =
+  new(result)
+  result.finished = false
+  result.stackTrace = getStackTraceEntries()
+
+type
+  PDispatcher {.acyclic.} = ref object
+
+var gDisp: PDispatcher
+new gDisp
+
+proc testCompletion(): FutureBase =
+  var retFuture = newFuture()
+
+  iterator testCompletionIter(): FutureBase {.closure.} =
+    retFuture.finished = true
+    when not defined(nobug):
+      let disp = gDisp # even worse memory consumption this way...
+
+  var nameIterVar = testCompletionIter
+  proc testCompletionNimAsyncContinue() {.closure.} =
+    if not nameIterVar.finished:
+      discard nameIterVar()
+  testCompletionNimAsyncContinue()
+  return retFuture
+
+proc main =
+  for i in 0..10_000:
+    discard testCompletion()
+
+main()
+
+GC_fullCollect()
+echo getOccupiedMem() < 1024