summary refs log tree commit diff stats
path: root/tests
diff options
context:
space:
mode:
authorRuslan Mustakov <endragor@users.noreply.github.com>2017-03-02 21:31:30 +0700
committerAndreas Rumpf <rumpf_a@web.de>2017-03-02 15:31:30 +0100
commita81247dcbe95eaac8338e478d8837cbcf57a0f3e (patch)
treecf7d86e6e19cf16e9149885a2ac81c4f2f09a2e7 /tests
parente2567e2e03c72929cbdfbf59933b4f35868b9626 (diff)
downloadNim-a81247dcbe95eaac8338e478d8837cbcf57a0f3e.tar.gz
Add compute proc for SharedTable (#5385)
Diffstat (limited to 'tests')
-rw-r--r--tests/collections/ttables.nim26
1 files changed, 25 insertions, 1 deletions
diff --git a/tests/collections/ttables.nim b/tests/collections/ttables.nim
index 0e06bc26f..a2988e841 100644
--- a/tests/collections/ttables.nim
+++ b/tests/collections/ttables.nim
@@ -1,8 +1,9 @@
 discard """
+  cmd: "nim c --threads:on $file"
   output: '''true'''
 """
 
-import hashes, tables
+import hashes, tables, sharedtables
 
 const
   data = {
@@ -211,6 +212,29 @@ block clearCountTableTest:
   t.clear()
   assert t.len() == 0
 
+block withKeyTest:
+  var t = initSharedTable[int, int]()
+  t.withKey(1) do (k: int, v: var int, pairExists: var bool):
+    assert(v == 0)
+    pairExists = true
+    v = 42
+  assert(t.mget(1) == 42)
+  t.withKey(1) do (k: int, v: var int, pairExists: var bool):
+    assert(v == 42)
+    pairExists = false
+  try:
+    discard t.mget(1)
+    assert(false, "KeyError expected")
+  except KeyError:
+    discard
+  t.withKey(2) do (k: int, v: var int, pairExists: var bool):
+    pairExists = false
+  try:
+    discard t.mget(2)
+    assert(false, "KeyError expected")
+  except KeyError:
+    discard
+
 proc orderedTableSortTest() =
   var t = initOrderedTable[string, int](2)
   for key, val in items(data): t[key] = val
ger/ext/direction.py?id=e26d163debc9f55a89a27f94a43771526d2ff0b7'>^
d1a1173d ^












5348e120 ^

1687e0f4 ^
5348e120 ^

1687e0f4 ^
5348e120 ^
d1a1173d ^

5348e120 ^

1687e0f4 ^
5348e120 ^

1687e0f4 ^
5348e120 ^
d1a1173d ^
b3d031a9 ^
84a22ae0 ^
d1a1173d ^










84a22ae0 ^
d1a1173d ^























2e8a1516 ^
2841f7b8 ^
2e8a1516 ^
e2f72291 ^
b1d93d5c ^

e2f72291 ^
d1a1173d ^



1687e0f4 ^
d1a1173d ^






b3d031a9 ^

b68d28c1 ^
d1a1173d ^

















e2f72291 ^



d1a1173d ^




4fc54db1 ^
d1a1173d ^




2e8a1516 ^
3fe5f929 ^

bd1cd0d6 ^









d1a1173d ^
3fe5f929 ^


d1a1173d ^

76791a70 ^
d1a1173d ^

3d87def6 ^
b3d031a9 ^
3d87def6 ^
d1a1173d ^
9d82571b ^

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
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