Skip to content
This repository has been archived by the owner on Nov 1, 2023. It is now read-only.

Commit

Permalink
Disable crashdump check for Linux in test
Browse files Browse the repository at this point in the history
  • Loading branch information
Porges authored Aug 1, 2023
1 parent f65c2b6 commit bf2fe3a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/integration-tests/integration-test.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,13 +107,17 @@ class Integration(BaseModel):
ContainerType.unique_reports: 1,
ContainerType.coverage: 1,
ContainerType.inputs: 2,
ContainerType.crashdumps: 1,
# TODO: crashdumps are intermittently not captured
# during integration tests on Linux. This requires more
# investigation before we can fully enable this test.
# ContainerType.crashdumps: 1,
ContainerType.extra_output: 1,
},
reboot_after_setup=True,
inject_fake_regression=True,
target_env={
"ASAN_OPTIONS": "disable_coredump=0:abort_on_error=1:unmap_shadow_on_exit=1"
# same TODO
# "ASAN_OPTIONS": "disable_coredump=0:abort_on_error=1:unmap_shadow_on_exit=1"
},
fuzzing_target_options=[
"--test:{extra_setup_dir}",
Expand Down

0 comments on commit bf2fe3a

Please sign in to comment.