summary refs log tree commit diff stats
path: root/tests/parallel/tdisjoint_slice2.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/parallel/tdisjoint_slice2.nim')
-rw-r--r--tests/parallel/tdisjoint_slice2.nim33
1 files changed, 0 insertions, 33 deletions
diff --git a/tests/parallel/tdisjoint_slice2.nim b/tests/parallel/tdisjoint_slice2.nim
deleted file mode 100644
index 1e86ea644..000000000
--- a/tests/parallel/tdisjoint_slice2.nim
+++ /dev/null
@@ -1,33 +0,0 @@
-discard """
-  output: '''0
-1
-2
-3
-4
-5
-6
-7
-8'''
-  sortoutput: true
-"""
-
-import threadpool
-
-proc f(a: openArray[int]) =
-  for x in a: echo x
-
-proc f(a: int) = echo a
-
-proc main() =
-  var a: array[0..9, int] = [0,1,2,3,4,5,6,7,8,9]
-  parallel:
-    spawn f(a[0..2])
-    #spawn f(a[16..30])
-    var i = 3
-    while i <= 8:
-      spawn f(a[i])
-      spawn f(a[i+1])
-      inc i, 2
-      # is correct here
-
-main()