Skip to content

Commit

Permalink
re-enable log check, since we know it is not about log flushing but d…
Browse files Browse the repository at this point in the history
…otnet failing to start the handler in CI
  • Loading branch information
supervacuus committed Nov 15, 2024
1 parent ff48460 commit 6c87e6b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_dotnet_signals.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit 6c87e6b

Please sign in to comment.