In ad26898 I made Testworks capture stdout/stderr in a file in the test temp directory for each test. A really common case that I didn't think of at the time was that when debugging a specific test it's common to add format-out or similar calls to the code. As a heuristic, when running just one test it would be reasonable, I think, to NOT redirect stdout/stderr.
We could also have a --show-stdout flag, but if we do the above heuristicificationifying perhaps it's not necessary.
In ad26898 I made Testworks capture stdout/stderr in a file in the test temp directory for each test. A really common case that I didn't think of at the time was that when debugging a specific test it's common to add
format-outor similar calls to the code. As a heuristic, when running just one test it would be reasonable, I think, to NOT redirect stdout/stderr.We could also have a
--show-stdoutflag, but if we do the above heuristicificationifying perhaps it's not necessary.