From 79374d8c21c1a6146737b12b7d273e285b6d16e1 Mon Sep 17 00:00:00 2001 From: Copilot <223556219+Copilot@users.noreply.github.com> Date: Mon, 18 May 2026 17:21:42 +0200 Subject: [PATCH 1/2] Update generic-crash banner to flag missing diagnostic artifacts (#8191 follow-up) When --crashdump or --crash-report is requested but the expected artifact does not appear on disk, OnTestHostProcessExitedAsync falls through to the (false, false) branch and prints CrashDumpProcessCrashed alongside the per-artifact CannotFindExpected* message. The banner itself was generic (Test host process with PID 'X' crashed), which understated the failure: a quick skim of the output gave no indication that an expected diagnostic artifact was missing. IsEnabledAsync guarantees at least one of --crashdump / --crash-report is set whenever the handler runs, so reaching the (false, false) branch always means an expected artifact was not produced. Update the banner text to reflect that explicitly so the per-artifact diagnostic isn't the only signal. Addresses https://github.com/microsoft/testfx/pull/8191#discussion_r3258181945. XLF files regenerated via /t:UpdateXlf. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../Resources/CrashDumpResources.resx | 2 +- .../Resources/xlf/CrashDumpResources.cs.xlf | 4 ++-- .../Resources/xlf/CrashDumpResources.de.xlf | 4 ++-- .../Resources/xlf/CrashDumpResources.es.xlf | 4 ++-- .../Resources/xlf/CrashDumpResources.fr.xlf | 4 ++-- .../Resources/xlf/CrashDumpResources.it.xlf | 4 ++-- .../Resources/xlf/CrashDumpResources.ja.xlf | 4 ++-- .../Resources/xlf/CrashDumpResources.ko.xlf | 4 ++-- .../Resources/xlf/CrashDumpResources.pl.xlf | 4 ++-- .../Resources/xlf/CrashDumpResources.pt-BR.xlf | 4 ++-- .../Resources/xlf/CrashDumpResources.ru.xlf | 4 ++-- .../Resources/xlf/CrashDumpResources.tr.xlf | 4 ++-- .../Resources/xlf/CrashDumpResources.zh-Hans.xlf | 4 ++-- .../Resources/xlf/CrashDumpResources.zh-Hant.xlf | 4 ++-- 14 files changed, 27 insertions(+), 27 deletions(-) diff --git a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/CrashDumpResources.resx b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/CrashDumpResources.resx index f67b12500a..3738499ca4 100644 --- a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/CrashDumpResources.resx +++ b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/CrashDumpResources.resx @@ -148,7 +148,7 @@ [net6.0+ only] Generate a dump file if the test process crashes - Test host process with PID '{0}' crashed + Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced Test host process with PID '{0}' crashed, a dump file and crash report were generated diff --git a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.cs.xlf b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.cs.xlf index 33f3571a46..1f1d09de44 100644 --- a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.cs.xlf +++ b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.cs.xlf @@ -53,8 +53,8 @@ - Test host process with PID '{0}' crashed - Test host process with PID '{0}' crashed + Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced + Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced diff --git a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.de.xlf b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.de.xlf index 7e2ff06485..1a601908a2 100644 --- a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.de.xlf +++ b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.de.xlf @@ -53,8 +53,8 @@ - Test host process with PID '{0}' crashed - Test host process with PID '{0}' crashed + Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced + Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced diff --git a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.es.xlf b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.es.xlf index 56271cdb54..ce89e9da7f 100644 --- a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.es.xlf +++ b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.es.xlf @@ -53,8 +53,8 @@ - Test host process with PID '{0}' crashed - Test host process with PID '{0}' crashed + Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced + Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced diff --git a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.fr.xlf b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.fr.xlf index 0b0a7d52c3..1ddb1154b0 100644 --- a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.fr.xlf +++ b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.fr.xlf @@ -53,8 +53,8 @@ - Test host process with PID '{0}' crashed - Test host process with PID '{0}' crashed + Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced + Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced diff --git a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.it.xlf b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.it.xlf index 862d8cda02..f083949fab 100644 --- a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.it.xlf +++ b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.it.xlf @@ -53,8 +53,8 @@ - Test host process with PID '{0}' crashed - Test host process with PID '{0}' crashed + Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced + Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced diff --git a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.ja.xlf b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.ja.xlf index ed380378a9..c26b0d2e1a 100644 --- a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.ja.xlf +++ b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.ja.xlf @@ -53,8 +53,8 @@ - Test host process with PID '{0}' crashed - Test host process with PID '{0}' crashed + Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced + Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced diff --git a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.ko.xlf b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.ko.xlf index cf122c7d3e..3aaefc599e 100644 --- a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.ko.xlf +++ b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.ko.xlf @@ -53,8 +53,8 @@ - Test host process with PID '{0}' crashed - Test host process with PID '{0}' crashed + Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced + Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced diff --git a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.pl.xlf b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.pl.xlf index 39ce261eed..ac5f6253c3 100644 --- a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.pl.xlf +++ b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.pl.xlf @@ -53,8 +53,8 @@ - Test host process with PID '{0}' crashed - Test host process with PID '{0}' crashed + Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced + Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced diff --git a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.pt-BR.xlf b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.pt-BR.xlf index fd5fd6560e..68174f7716 100644 --- a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.pt-BR.xlf +++ b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.pt-BR.xlf @@ -53,8 +53,8 @@ - Test host process with PID '{0}' crashed - Test host process with PID '{0}' crashed + Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced + Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced diff --git a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.ru.xlf b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.ru.xlf index a6e15ee7e3..da8724e1ed 100644 --- a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.ru.xlf +++ b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.ru.xlf @@ -53,8 +53,8 @@ - Test host process with PID '{0}' crashed - Test host process with PID '{0}' crashed + Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced + Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced diff --git a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.tr.xlf b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.tr.xlf index 2d6daa461a..78a96b3da8 100644 --- a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.tr.xlf +++ b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.tr.xlf @@ -53,8 +53,8 @@ - Test host process with PID '{0}' crashed - Test host process with PID '{0}' crashed + Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced + Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced diff --git a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.zh-Hans.xlf b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.zh-Hans.xlf index cd81d221c6..c18a5f9380 100644 --- a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.zh-Hans.xlf +++ b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.zh-Hans.xlf @@ -53,8 +53,8 @@ - Test host process with PID '{0}' crashed - Test host process with PID '{0}' crashed + Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced + Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced diff --git a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.zh-Hant.xlf b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.zh-Hant.xlf index e44ba849a8..75bc1fa1bf 100644 --- a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.zh-Hant.xlf +++ b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.zh-Hant.xlf @@ -53,8 +53,8 @@ - Test host process with PID '{0}' crashed - Test host process with PID '{0}' crashed + Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced + Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced From 2f7223e1e025a8d3037f03b1fd4b1fc475dd05e7 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 18 May 2026 16:48:13 +0000 Subject: [PATCH 2/2] Fix CrashDump banner grammar and regenerate XLF outputs Co-authored-by: Evangelink <11340282+Evangelink@users.noreply.github.com> --- .../Resources/CrashDumpResources.resx | 2 +- .../Resources/xlf/CrashDumpResources.cs.xlf | 4 ++-- .../Resources/xlf/CrashDumpResources.de.xlf | 4 ++-- .../Resources/xlf/CrashDumpResources.es.xlf | 4 ++-- .../Resources/xlf/CrashDumpResources.fr.xlf | 4 ++-- .../Resources/xlf/CrashDumpResources.it.xlf | 4 ++-- .../Resources/xlf/CrashDumpResources.ja.xlf | 4 ++-- .../Resources/xlf/CrashDumpResources.ko.xlf | 4 ++-- .../Resources/xlf/CrashDumpResources.pl.xlf | 4 ++-- .../Resources/xlf/CrashDumpResources.pt-BR.xlf | 4 ++-- .../Resources/xlf/CrashDumpResources.ru.xlf | 4 ++-- .../Resources/xlf/CrashDumpResources.tr.xlf | 4 ++-- .../Resources/xlf/CrashDumpResources.zh-Hans.xlf | 4 ++-- .../Resources/xlf/CrashDumpResources.zh-Hant.xlf | 4 ++-- 14 files changed, 27 insertions(+), 27 deletions(-) diff --git a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/CrashDumpResources.resx b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/CrashDumpResources.resx index 3738499ca4..dbd4617724 100644 --- a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/CrashDumpResources.resx +++ b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/CrashDumpResources.resx @@ -148,7 +148,7 @@ [net6.0+ only] Generate a dump file if the test process crashes - Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced + Test host process with PID '{0}' crashed, but the expected diagnostic artifact(s) were not produced Test host process with PID '{0}' crashed, a dump file and crash report were generated diff --git a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.cs.xlf b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.cs.xlf index 1f1d09de44..427368dd3d 100644 --- a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.cs.xlf +++ b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.cs.xlf @@ -53,8 +53,8 @@ - Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced - Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced + Test host process with PID '{0}' crashed, but the expected diagnostic artifact(s) were not produced + Test host process with PID '{0}' crashed, but the expected diagnostic artifact(s) were not produced diff --git a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.de.xlf b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.de.xlf index 1a601908a2..2a96cc72b9 100644 --- a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.de.xlf +++ b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.de.xlf @@ -53,8 +53,8 @@ - Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced - Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced + Test host process with PID '{0}' crashed, but the expected diagnostic artifact(s) were not produced + Test host process with PID '{0}' crashed, but the expected diagnostic artifact(s) were not produced diff --git a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.es.xlf b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.es.xlf index ce89e9da7f..eb4bcc4203 100644 --- a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.es.xlf +++ b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.es.xlf @@ -53,8 +53,8 @@ - Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced - Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced + Test host process with PID '{0}' crashed, but the expected diagnostic artifact(s) were not produced + Test host process with PID '{0}' crashed, but the expected diagnostic artifact(s) were not produced diff --git a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.fr.xlf b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.fr.xlf index 1ddb1154b0..e90a9d468e 100644 --- a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.fr.xlf +++ b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.fr.xlf @@ -53,8 +53,8 @@ - Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced - Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced + Test host process with PID '{0}' crashed, but the expected diagnostic artifact(s) were not produced + Test host process with PID '{0}' crashed, but the expected diagnostic artifact(s) were not produced diff --git a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.it.xlf b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.it.xlf index f083949fab..0343fb8141 100644 --- a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.it.xlf +++ b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.it.xlf @@ -53,8 +53,8 @@ - Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced - Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced + Test host process with PID '{0}' crashed, but the expected diagnostic artifact(s) were not produced + Test host process with PID '{0}' crashed, but the expected diagnostic artifact(s) were not produced diff --git a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.ja.xlf b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.ja.xlf index c26b0d2e1a..b840a3311a 100644 --- a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.ja.xlf +++ b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.ja.xlf @@ -53,8 +53,8 @@ - Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced - Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced + Test host process with PID '{0}' crashed, but the expected diagnostic artifact(s) were not produced + Test host process with PID '{0}' crashed, but the expected diagnostic artifact(s) were not produced diff --git a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.ko.xlf b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.ko.xlf index 3aaefc599e..b88005c02d 100644 --- a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.ko.xlf +++ b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.ko.xlf @@ -53,8 +53,8 @@ - Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced - Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced + Test host process with PID '{0}' crashed, but the expected diagnostic artifact(s) were not produced + Test host process with PID '{0}' crashed, but the expected diagnostic artifact(s) were not produced diff --git a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.pl.xlf b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.pl.xlf index ac5f6253c3..c6f6606a9c 100644 --- a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.pl.xlf +++ b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.pl.xlf @@ -53,8 +53,8 @@ - Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced - Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced + Test host process with PID '{0}' crashed, but the expected diagnostic artifact(s) were not produced + Test host process with PID '{0}' crashed, but the expected diagnostic artifact(s) were not produced diff --git a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.pt-BR.xlf b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.pt-BR.xlf index 68174f7716..6166d0b69f 100644 --- a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.pt-BR.xlf +++ b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.pt-BR.xlf @@ -53,8 +53,8 @@ - Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced - Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced + Test host process with PID '{0}' crashed, but the expected diagnostic artifact(s) were not produced + Test host process with PID '{0}' crashed, but the expected diagnostic artifact(s) were not produced diff --git a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.ru.xlf b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.ru.xlf index da8724e1ed..8633409680 100644 --- a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.ru.xlf +++ b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.ru.xlf @@ -53,8 +53,8 @@ - Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced - Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced + Test host process with PID '{0}' crashed, but the expected diagnostic artifact(s) were not produced + Test host process with PID '{0}' crashed, but the expected diagnostic artifact(s) were not produced diff --git a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.tr.xlf b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.tr.xlf index 78a96b3da8..dc649e3a7c 100644 --- a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.tr.xlf +++ b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.tr.xlf @@ -53,8 +53,8 @@ - Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced - Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced + Test host process with PID '{0}' crashed, but the expected diagnostic artifact(s) were not produced + Test host process with PID '{0}' crashed, but the expected diagnostic artifact(s) were not produced diff --git a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.zh-Hans.xlf b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.zh-Hans.xlf index c18a5f9380..f03a18a70f 100644 --- a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.zh-Hans.xlf +++ b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.zh-Hans.xlf @@ -53,8 +53,8 @@ - Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced - Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced + Test host process with PID '{0}' crashed, but the expected diagnostic artifact(s) were not produced + Test host process with PID '{0}' crashed, but the expected diagnostic artifact(s) were not produced diff --git a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.zh-Hant.xlf b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.zh-Hant.xlf index 75bc1fa1bf..f32f8420a2 100644 --- a/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.zh-Hant.xlf +++ b/src/Platform/Microsoft.Testing.Extensions.CrashDump/Resources/xlf/CrashDumpResources.zh-Hant.xlf @@ -53,8 +53,8 @@ - Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced - Test host process with PID '{0}' crashed but the expected diagnostic artifact(s) were not produced + Test host process with PID '{0}' crashed, but the expected diagnostic artifact(s) were not produced + Test host process with PID '{0}' crashed, but the expected diagnostic artifact(s) were not produced