From 6c87e6b7950d8867496e35a2688aff9f40029010 Mon Sep 17 00:00:00 2001 From: Mischan Toosarani-Hausberger Date: Fri, 15 Nov 2024 10:26:51 +0100 Subject: [PATCH] re-enable log check, since we know it is not about log flushing but dotnet failing to start the handler in CI --- tests/test_dotnet_signals.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_dotnet_signals.py b/tests/test_dotnet_signals.py index d54de37c4..b6dda5934 100644 --- a/tests/test_dotnet_signals.py +++ b/tests/test_dotnet_signals.py @@ -56,6 +56,7 @@ def run_dotnet_native_crash(tmp_path): skip_condition = sys.platform != "linux" or bool(os.environ.get("TEST_X86")) + @pytest.mark.skipif( skip_condition, reason="dotnet signal handling is currently only supported on 64-bit Linux", @@ -101,7 +102,7 @@ def test_dotnet_signals_inproc(cmake): # the program will fail with a SIGSEGV, that has been processed by the Native SDK which produced a crash envelope assert dotnet_run.returncode != 0 - # assert "crash has been captured" in dotnet_run_stderr + assert "crash has been captured" in dotnet_run_stderr assert (database_path / "last_crash").exists() assert_run_dir_with_envelope(database_path) finally: