diff options
author | Bung <crc32@qq.com> | 2022-10-04 18:32:07 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-04 12:32:07 +0200 |
commit | 6cf07271923a6c43d0ccaa0490c8a3d38ead678e (patch) | |
tree | 562773cfe5032a03d5478b35ace2489738330170 | |
parent | 7aaeb75ebd0c55081692f6ba92a9410d1c00ad69 (diff) | |
download | Nim-6cf07271923a6c43d0ccaa0490c8a3d38ead678e.tar.gz |
decrease iteration count of btree test (#20491)
disable btree test
-rw-r--r-- | tests/compiler/tbtrees.nim (renamed from tests/compiler/tbrees.nim) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/compiler/tbrees.nim b/tests/compiler/tbtrees.nim index 5f6482ed9..973c26420 100644 --- a/tests/compiler/tbrees.nim +++ b/tests/compiler/tbtrees.nim @@ -68,7 +68,7 @@ proc main = when true: var b2 = initBTree[int, string]() var t2 = initTable[int, string]() - const iters = 100_000 + const iters = 100 for i in 1..iters: let x = rand(high(int)) if not t2.hasKey(x): |