summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2019-11-28 09:32:42 +0100
committerAraq <rumpf_a@web.de>2019-11-28 09:33:01 +0100
commitd4cae118dcf6248122ecfaf109fde826dbd5da45 (patch)
treeaf0201caf6c46f9bf4ba965e85b7f6a5faf0ed29
parent0944b0f4415a262968cf68f1dbb035cfc3326680 (diff)
downloadNim-d4cae118dcf6248122ecfaf109fde826dbd5da45.tar.gz
fixes a flaky test for the realtime GC
-rw-r--r--tests/gc/gcleak4.nim3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/gc/gcleak4.nim b/tests/gc/gcleak4.nim
index aec0218e8..fbe18a386 100644
--- a/tests/gc/gcleak4.nim
+++ b/tests/gc/gcleak4.nim
@@ -2,9 +2,6 @@ discard """
   outputsub: "no leak: "
 """
 
-when declared(GC_setMaxPause):
-  GC_setMaxPause 2_000
-
 type
   TExpr {.inheritable.} = object ## abstract base class for an expression
   PLiteral = ref TLiteral
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221