diff options
Diffstat (limited to 'tests/system/tsysspawn.nim')
-rw-r--r-- | tests/system/tsysspawn.nim | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/tests/system/tsysspawn.nim b/tests/system/tsysspawn.nim index 0388918aa..fc7921b0e 100644 --- a/tests/system/tsysspawn.nim +++ b/tests/system/tsysspawn.nim @@ -4,20 +4,22 @@ discard """ cmd: "nimrod $target --threads:on $options $file" """ +import threadpool + var x, y = 0 proc p1 = - for i in 0 .. 1_000_000: + for i in 0 .. 10_000: discard - inc x + atomicInc x proc p2 = - for i in 0 .. 1_000_000: + for i in 0 .. 10_000: discard - inc y, 2 + atomicInc y, 2 for i in 0.. 3: spawn(p1()) |