diff options
author | Araq <rumpf_a@web.de> | 2014-08-29 09:12:12 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-08-29 09:12:12 +0200 |
commit | c6034277fcb597da03d064b773ad4f6823823fa0 (patch) | |
tree | bcd12c6af99162c2bc5f03cd374d7b54c07420f3 /tests/parallel | |
parent | cd2c6128d1df471830ea7f842b57aa32aee5deab (diff) | |
download | Nim-c6034277fcb597da03d064b773ad4f6823823fa0.tar.gz |
further adaptations
Diffstat (limited to 'tests/parallel')
-rw-r--r-- | tests/parallel/tflowvar.nim | 2 | ||||
-rw-r--r-- | tests/parallel/tsysspawn.nim | 2 | ||||
-rw-r--r-- | tests/parallel/tsysspawnbadarg.nim | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/parallel/tflowvar.nim b/tests/parallel/tflowvar.nim index 96d42255d..488c65a91 100644 --- a/tests/parallel/tflowvar.nim +++ b/tests/parallel/tflowvar.nim @@ -2,7 +2,7 @@ discard """ output: '''foobarfoobar bazbearbazbear 1''' - cmd: "nimrod $target --threads:on $options $file" + cmd: "nim $target --threads:on $options $file" """ import threadpool diff --git a/tests/parallel/tsysspawn.nim b/tests/parallel/tsysspawn.nim index fc7921b0e..7244a5ee6 100644 --- a/tests/parallel/tsysspawn.nim +++ b/tests/parallel/tsysspawn.nim @@ -1,7 +1,7 @@ discard """ output: '''4 8''' - cmd: "nimrod $target --threads:on $options $file" + cmd: "nim $target --threads:on $options $file" """ import threadpool diff --git a/tests/parallel/tsysspawnbadarg.nim b/tests/parallel/tsysspawnbadarg.nim index ad798a7d3..2d3ffd241 100644 --- a/tests/parallel/tsysspawnbadarg.nim +++ b/tests/parallel/tsysspawnbadarg.nim @@ -1,7 +1,7 @@ discard """ line: 9 errormsg: "'spawn' takes a call expression" - cmd: "nimrod $target --threads:on $options $file" + cmd: "nim $target --threads:on $options $file" """ import threadpool |