diff options
author | Araq <rumpf_a@web.de> | 2012-04-21 03:19:43 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2012-04-21 03:19:43 +0200 |
commit | 4aba7421f57d0f653ef928f012982957404416f9 (patch) | |
tree | d370a057c9f1ec4ffa4f9d16ee2c6c2359e04143 /tests/gc/gcleak3.nim | |
parent | 8319e2411d07503f8ca1475f1ef9009384560c1c (diff) | |
download | Nim-4aba7421f57d0f653ef928f012982957404416f9.tar.gz |
GC with realtime support
Diffstat (limited to 'tests/gc/gcleak3.nim')
-rwxr-xr-x | tests/gc/gcleak3.nim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/gc/gcleak3.nim b/tests/gc/gcleak3.nim index 70aeda3bb..588e238e9 100755 --- a/tests/gc/gcleak3.nim +++ b/tests/gc/gcleak3.nim @@ -2,6 +2,9 @@ discard """ outputsub: "no leak: " """ +when defined(GC_setMaxPause): + GC_setMaxPause 2_000 + type TSomething = object s: string |