Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixes
  • Loading branch information
nohwnd committed Jul 4, 2025
commit 2588430d943c6d8e88b169aa90a1f994e4ee9d8d
Original file line number Diff line number Diff line change
Expand Up @@ -1198,6 +1198,9 @@ private void SendMessageAndListenAndReportTestResults(
eventHandler.HandleLogMessage(
TestMessageLevel.Error,
TranslationLayerResources.AbortedTestsRun);
eventHandler.HandleLogMessage(
TestMessageLevel.Error,
exception.ToString());
var completeArgs = new TestRunCompleteEventArgs(
null, false, true, exception, null, null, TimeSpan.Zero);
eventHandler.HandleTestRunComplete(completeArgs, null, null, null);
Expand Down Expand Up @@ -1283,6 +1286,9 @@ private async Task SendMessageAndListenAndReportTestResultsAsync(
eventHandler.HandleLogMessage(
TestMessageLevel.Error,
TranslationLayerResources.AbortedTestsRun);
eventHandler.HandleLogMessage(
TestMessageLevel.Error,
exception.ToString());
var completeArgs = new TestRunCompleteEventArgs(
null, false, true, exception, null, null, TimeSpan.Zero);
eventHandler.HandleTestRunComplete(completeArgs, null, null, null);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ public void RunTestsWithCustomTestHostLauncherUsesLaunchWhenGivenAnOutdatedITest
[TestCategory("Windows-Review")]
[TestCategory("Feature")]
[RunnerCompatibilityDataSource(AfterFeature = Features.MULTI_TFM)]
// [RunnerCompatibilityDataSource("net8.0", "MostDownloaded", "net8.0")]
public void RunAllTestsWithMixedTFMsWillProvideAdditionalInformationToTheDebugger(RunnerInfo runnerInfo)
{
// Arrange
Expand Down
Loading