Skip to content

Commit

Permalink
disable the test on ASAN runs since that would require an instrumente…
Browse files Browse the repository at this point in the history
…d runtime :-)

dotnet/runtime#13458
  • Loading branch information
supervacuus committed Nov 15, 2024
1 parent 84c94df commit c735270
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/test_dotnet_signals.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,11 @@ def run_dotnet_native_crash(tmp_path):
return run_dotnet(tmp_path, ["dotnet", "run", "native-crash"])


skip_condition = sys.platform != "linux" or bool(os.environ.get("TEST_X86"))
skip_condition = (
sys.platform != "linux"
or bool(os.environ.get("TEST_X86"))
or "asan" in os.environ.get("RUN_ANALYZER", "")
)


@pytest.mark.skipif(
Expand Down

0 comments on commit c735270

Please sign in to comment.