diff options
author | Araq <rumpf_a@web.de> | 2014-02-02 00:41:04 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-02-02 00:41:04 +0100 |
commit | d29aa4c5ac6950a9b8c53bedeb9dd0dd9b4f64a2 (patch) | |
tree | 4b3f1ebaec291cc33f5253590bc5f7142a3ce6c5 /koch.nim | |
parent | 38697234f66f98fad953085412b2ce218521427e (diff) | |
download | Nim-d29aa4c5ac6950a9b8c53bedeb9dd0dd9b4f64a2.tar.gz |
new tester produces json output
Diffstat (limited to 'koch.nim')
-rw-r--r-- | koch.nim | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/koch.nim b/koch.nim index 35a86a597..4d2b3bfb7 100644 --- a/koch.nim +++ b/koch.nim @@ -266,8 +266,9 @@ proc tests(args: string) = # we compile the tester with taintMode:on to have a basic # taint mode test :-) exec "nimrod cc --taintMode:on tests/testament/tester" - exec quoteShell(getCurrentDir() / "tests/testament/tester".exe) & " " & - (args|"all") + let tester = quoteShell(getCurrentDir() / "tests/testament/tester".exe) + exec tester & " " & (args|"all") + exec tester & " html" proc temp(args: string) = var output = "compiler" / "nimrod".exe |