Is there a way to run tests in parallel, but still get good, non-interleaved, output?
For example, in:
https://ci.dot.net/job/dotnet_coreclr/job/master/view/x64/job/jitstress/job/x64_checked_windows_nt_corefx_baseline/641/consoleText
we run the tests using:
build-tests.cmd -Release -os:Windows_NT -buildArch:x64 -- /p:WithoutCategories=IgnoreForCI /p:PreExecutionTestScript=D:\j\workspace\x64_checked_w---a7bd363e\SetStressModes.bat
Then, there is apparently a failure in System.ComponentModel.Composition.Tests. However, it is extremely difficult to see what it is from the logs, because the output between the time the test starts and the time the test ends is interleaved with other test output.
Is there a way to run tests in parallel, but still get good, non-interleaved, output?
For example, in:
https://ci.dot.net/job/dotnet_coreclr/job/master/view/x64/job/jitstress/job/x64_checked_windows_nt_corefx_baseline/641/consoleText
we run the tests using:
Then, there is apparently a failure in System.ComponentModel.Composition.Tests. However, it is extremely difficult to see what it is from the logs, because the output between the time the test starts and the time the test ends is interleaved with other test output.