diff options
author | Aman Gupta <aman@tmm1.net> | 2015-10-02 17:38:48 -0700 |
---|---|---|
committer | Aman Gupta <aman@tmm1.net> | 2015-10-02 17:38:48 -0700 |
commit | 6e7759734e321e6441b73ddfc5a0a0b37b81ded3 (patch) | |
tree | 74f2b0fb264cd2065ff2f91a08061c8ed20c350e /tests | |
parent | 8f6a275f4de74873170f0cf00745fff8cee5bcb8 (diff) | |
download | Nim-6e7759734e321e6441b73ddfc5a0a0b37b81ded3.tar.gz |
show stderr w/ reExitcodesDiffer
Diffstat (limited to 'tests')
-rw-r--r-- | tests/testament/tester.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testament/tester.nim b/tests/testament/tester.nim index e52988682..814e342ca 100644 --- a/tests/testament/tester.nim +++ b/tests/testament/tester.nim @@ -282,7 +282,7 @@ proc testSpec(r: var TResults, test: TTest) = return let exeCmd = (if isJsTarget: nodejs & " " else: "") & exeFile - let (buf, exitCode) = execCmdEx(exeCmd) + var (buf, exitCode) = execCmdEx(exeCmd, options = {poStdErrToStdOut}) let bufB = if expected.sortoutput: makeDeterministic(strip(buf.string)) else: strip(buf.string) let expectedOut = strip(expected.outp) |