diff options
Diffstat (limited to 'koch.nim')
-rwxr-xr-x | koch.nim | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/koch.nim b/koch.nim index 8faee0cc7..b5d407a0f 100755 --- a/koch.nim +++ b/koch.nim @@ -177,7 +177,9 @@ proc clean(args: string) = RemoveDir(path) proc tests(args: string) = - exec("nimrod cc tests/tester") + # we compile the tester with taintMode:on to have a basic + # taint mode test :-) + exec("nimrod cc --taintMode:on tests/tester") exec("tests/tester reject") exec("tests/tester compile") exec("tests/tester examples") |