diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/testament/tester.nim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/testament/tester.nim b/tests/testament/tester.nim index 451bee1d1..b1e8ac099 100644 --- a/tests/testament/tester.nim +++ b/tests/testament/tester.nim @@ -292,7 +292,8 @@ proc testSpec(r: var TResults, test: TTest) = case expected.action of actionCompile: var given = callCompiler(expected.cmd, test.name, - test.options & " --hint[Path]:off --hint[Processing]:off", test.target) + test.options & " --stdout --hint[Path]:off --hint[Processing]:off", + test.target) compilerOutputTests(test, given, expected, r) of actionRun, actionRunNoSpec: # In this branch of code "early return" pattern is clearer than deep |