David Matson
David Matson
Thanks, @aveenismail! I wonder if the problem is in libp11. From a quick skim of their code, I think they have RSA and ECC support but not ED255119/X25519: https://github.com/OpenSC/libp11/blob/4ad2d25fb4afea34e85a260383155e6413ce54a8/src/pkcs11.h#L711 It...
It must have been a problem in libp11. This problem no longer occurs with the [latest libp11 release (0.4.13)](https://github.com/OpenSC/libp11/releases/tag/libp11-0.4.13).
@derekmauro - would you be able to help reviewing this PR? thanks!
This is a for a service and needs to take all testing frameworks into account.
> @davidmatson, when you say > ITestLogger allows me to log on TestCaseEnd > are you referring to the [`TestLoggerEvents.TestResult`](https://github.com/microsoft/vstest/blob/v17.9.0/src/Microsoft.TestPlatform.ObjectModel/Logger/TestLoggerEvents.cs#L35) event? Yes. I was originally thinking of how test framework...
Other options that could work for the same scenario: XML to stdout: Parsing streaming XML (no DOM, as the file isn't fully written yet) is harder than the format above,...
Related to #550 and #447 - this might work for both of those cases as well as others.
@nohwnd - thoughts on this feature? We'd be interested in working on an implementation draft, if there's agreement that this would be a good idea.
@nohwnd - yes, I'd imagine VSCode integration could use this rather than the currently-unsupported hook that it's currently using to show progress in the IDE as tests are executing. Thoughts?
Thanks, @fflaten. We're relying on console output to tell us about everything that failed, so we can stream it into another system with full fidelity. If we need this data...