You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix swift-testing test not always capturing terminal output (#1129)
Occasionally a swift-testing test can start printing output before the
test start JSON event is recieved over the named pipe. This output was
always recorded to the test run, but wasn't necessarily captured in the
structure used to record test results for the vscode-swift unit tests.
This would cause the `swift-testing: Runs passing test` test to
occasionally fail when it couldn't find the output line printed during
the test, because it was printed before the test start event was
recieved.
Record the output no matter when it occurs so that it can be verified in
the tests correctly.
0 commit comments