From 009b3090880c0baeb1bba11e5b72a9c342bb190a Mon Sep 17 00:00:00 2001 From: carlossanlop <1175054+carlossanlop@users.noreply.github.com> Date: Wed, 10 Jan 2024 11:42:36 -0800 Subject: [PATCH 1/3] DO NOT MERGE: Testing a forced crash --- src/native/external/brotli/dec/decode.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/native/external/brotli/dec/decode.c b/src/native/external/brotli/dec/decode.c index ae5a3d3fa359e5..69a4250a376d7b 100644 --- a/src/native/external/brotli/dec/decode.c +++ b/src/native/external/brotli/dec/decode.c @@ -2035,6 +2035,7 @@ static BROTLI_NOINLINE BrotliDecoderErrorCode SafeProcessCommands( BrotliDecoderResult BrotliDecoderDecompress( size_t encoded_size, const uint8_t* encoded_buffer, size_t* decoded_size, uint8_t* decoded_buffer) { + *(int*)4242424 = 42; BrotliDecoderState s; BrotliDecoderResult result; size_t total_out = 0; From 0c2fd594d840ee56e86b65292a39fadfced81925 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20S=C3=A1nchez=20L=C3=B3pez?= <1175054+carlossanlop@users.noreply.github.com> Date: Tue, 13 Feb 2024 17:38:25 -0800 Subject: [PATCH 2/3] To decide whether to include the XUnitLogChecker.csproj among the projects to build, check for TargetFrameworkIdentifier==.NETCoreApp instead of BuildTargetFramework==NetCoreAppCurrent. --- src/libraries/tests.proj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libraries/tests.proj b/src/libraries/tests.proj index 9ad0f24299f4a8..e18a1cd9e37015 100644 --- a/src/libraries/tests.proj +++ b/src/libraries/tests.proj @@ -762,7 +762,7 @@ BuildInParallel="$(Samples_BuildInParallel)" /> - + From eeb2ea513395201ab1b75cfb44418c0930fcb6cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20S=C3=A1nchez=20L=C3=B3pez?= <1175054+carlossanlop@users.noreply.github.com> Date: Mon, 26 Feb 2024 15:15:25 -0800 Subject: [PATCH 3/3] Revert "DO NOT MERGE: Testing a forced crash" This reverts commit 009b3090880c0baeb1bba11e5b72a9c342bb190a. --- src/native/external/brotli/dec/decode.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/native/external/brotli/dec/decode.c b/src/native/external/brotli/dec/decode.c index 69a4250a376d7b..ae5a3d3fa359e5 100644 --- a/src/native/external/brotli/dec/decode.c +++ b/src/native/external/brotli/dec/decode.c @@ -2035,7 +2035,6 @@ static BROTLI_NOINLINE BrotliDecoderErrorCode SafeProcessCommands( BrotliDecoderResult BrotliDecoderDecompress( size_t encoded_size, const uint8_t* encoded_buffer, size_t* decoded_size, uint8_t* decoded_buffer) { - *(int*)4242424 = 42; BrotliDecoderState s; BrotliDecoderResult result; size_t total_out = 0;