diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2021-03-24 01:01:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-24 01:01:31 +0100 |
commit | 8ccde68f132be4dba330eb6ec50f4679e564efac (patch) | |
tree | 08d5bca1307392e20154a8438cfe42b8121be3e2 /testament/categories.nim | |
parent | dbde97f649b0a4d947e15eddfacbde761cd49885 (diff) | |
download | Nim-8ccde68f132be4dba330eb6ec50f4679e564efac.tar.gz |
closes #17085; boehm has problems with large allocations, that is expected and we don't care (#17487)
Diffstat (limited to 'testament/categories.nim')
-rw-r--r-- | testament/categories.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testament/categories.nim b/testament/categories.nim index acb3ee0a8..86aa1f8af 100644 --- a/testament/categories.nim +++ b/testament/categories.nim @@ -173,7 +173,7 @@ proc gcTests(r: var TResults, cat: Category, options: string) = test "stackrefleak" test "cyclecollector" - test "trace_globals" + testWithoutBoehm "trace_globals" proc longGCTests(r: var TResults, cat: Category, options: string) = when defined(windows): |