blob: fe1718aef6b45481fc3620fd62c1bf5c21343471 (
plain) (
tree)
|
|
discard """
outputsub: "no leak: "
"""
when defined(GC_setMaxPause):
GC_setMaxPause 2_000
type
TTestObj = object of RootObj
x: string
s: seq[int]
proc makeObj(): TTestObj =
result.x = "Hello"
result.s = @[1,2,3]
proc inProc() =
for i in 1 .. 1_000_000:
when defined(gcMarkAndSweep) or defined(boehmgc):
GC_fullcollect()
var obj: TTestObj
obj = makeObj()
if getOccupiedMem() > 300_000: quit("still a leak!")
inProc()
echo "no leak: ", getOccupiedMem()
|