summary refs log tree commit diff stats
path: root/tests/collections/ttablesref2.nim
blob: 939de2b84fbfc41fdb4c8394bb960d6cdfb37ad0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
discard """
  output: '''true'''
"""

import tables

proc TestHashIntInt() =
  var tab = newTable[int,int]()
  for i in 1..1_000_000:
    tab[i] = i
  for i in 1..1_000_000:
    var x = tab[i]
    if x != i : echo "not found ", i

proc run1() =         # occupied Memory stays constant, but
  for i in 1 .. 50:   # aborts at run: 44 on win32 with 3.2GB with out of memory
    TestHashIntInt()

run1()
echo "true"