diff options
author | Grzegorz Adam Hankiewicz <gradha@imap.cc> | 2013-06-07 19:47:33 +0200 |
---|---|---|
committer | Grzegorz Adam Hankiewicz <gradha@imap.cc> | 2013-06-07 19:47:33 +0200 |
commit | 8f76092b89212ed9f691d288d11dc660dacc9d52 (patch) | |
tree | af3e28002a230b7377fae5e25c32c836596b042e /tests/caas | |
parent | 9b0e03cb2e87d325cca232ccd36a3e2735c3a5c9 (diff) | |
download | Nim-8f76092b89212ed9f691d288d11dc660dacc9d52.tar.gz |
Runs all caas tests also in process mode.
This requires changing a little bit the test cases to avoid specifying the filename as the last parameter. The trackDirty switch still doesn't work for process mode. Also revers some SuccessX which I think were hidden in the amount of output verbosity.
Diffstat (limited to 'tests/caas')
-rw-r--r-- | tests/caas/compile-suggest.txt | 2 | ||||
-rw-r--r-- | tests/caas/compile-then-def.txt | 8 | ||||
-rw-r--r-- | tests/caas/def-def-compile.txt | 8 | ||||
-rw-r--r-- | tests/caas/def-then-compile.txt | 4 | ||||
-rw-r--r-- | tests/caas/suggest-compile.txt | 2 |
5 files changed, 12 insertions, 12 deletions
diff --git a/tests/caas/compile-suggest.txt b/tests/caas/compile-suggest.txt index 4e2ab9729..3cc0ee0cb 100644 --- a/tests/caas/compile-suggest.txt +++ b/tests/caas/compile-suggest.txt @@ -1,7 +1,7 @@ main.nim > c SuccessX -> idetools --trackDirty:main_dirty.nim,main.nim,12,7 --suggest main.nim +> idetools --trackDirty:main_dirty.nim,main.nim,12,7 --suggest skField\tx skField\ty diff --git a/tests/caas/compile-then-def.txt b/tests/caas/compile-then-def.txt index a5080c50d..839ca1532 100644 --- a/tests/caas/compile-then-def.txt +++ b/tests/caas/compile-then-def.txt @@ -1,9 +1,9 @@ main.nim > c SuccessX -> idetools --track:main.nim,5,18 --def main.nim +> idetools --track:main.nim,5,18 --def strutils.toUpper -SuccessX -> idetools --track:main.nim,5,18 --def main.nim +! SuccessX +> idetools --track:main.nim,5,18 --def strutils.toUpper -SuccessX +! SuccessX diff --git a/tests/caas/def-def-compile.txt b/tests/caas/def-def-compile.txt index 64002aff1..05ea5a1aa 100644 --- a/tests/caas/def-def-compile.txt +++ b/tests/caas/def-def-compile.txt @@ -1,10 +1,10 @@ main.nim -> idetools --track:main.nim,5,18 --def main.nim +> idetools --track:main.nim,5,18 --def strutils.toUpper -SuccessX -> idetools --track:main.nim,5,18 --def main.nim +! SuccessX +> idetools --track:main.nim,5,18 --def strutils.toUpper -SuccessX +! SuccessX > c SuccessX diff --git a/tests/caas/def-then-compile.txt b/tests/caas/def-then-compile.txt index efa4dcbb3..7e755cff2 100644 --- a/tests/caas/def-then-compile.txt +++ b/tests/caas/def-then-compile.txt @@ -1,7 +1,7 @@ main.nim -> idetools --track:main.nim,5,18 --def main.nim +> idetools --track:main.nim,5,18 --def strutils.toUpper -SuccessX +! SuccessX > c SuccessX diff --git a/tests/caas/suggest-compile.txt b/tests/caas/suggest-compile.txt index 49d0dc431..76756c86e 100644 --- a/tests/caas/suggest-compile.txt +++ b/tests/caas/suggest-compile.txt @@ -1,5 +1,5 @@ main.nim -> idetools --trackDirty:main_dirty.nim,main.nim,12,7 --suggest main.nim +> idetools --trackDirty:main_dirty.nim,main.nim,12,7 --suggest skField\tx skField\ty > c |