diff --git a/capi/CHANGELOG.md b/capi/CHANGELOG.md index 24bf19ef..14ee74cd 100644 --- a/capi/CHANGELOG.md +++ b/capi/CHANGELOG.md @@ -1,5 +1,7 @@ Unreleased ---------- +- Added `blaze_symbolizer_opts::process_dispatch` providing process + dispatch functionality - Bumped minimum supported Rust version to `1.88` diff --git a/tests/suite/symbolize.rs b/tests/suite/symbolize.rs index 62a1ad6c..f883b0b8 100644 --- a/tests/suite/symbolize.rs +++ b/tests/suite/symbolize.rs @@ -2115,7 +2115,6 @@ fn create_elf_resolver_from_non_existing_path() { /// Make sure that [`ElfResolver::open_with_debug_dirs`] can be created and /// registered successfully. -#[cfg(feature = "dwarf")] #[test] fn create_elf_resolver_with_debug_dirs() { let bin_name = Path::new(&env!("CARGO_MANIFEST_DIR")) @@ -2132,7 +2131,6 @@ fn create_elf_resolver_with_debug_dirs() { /// Make sure that [`ElfResolver::open_with_debug_dirs`] fails for a /// non-existing file. -#[cfg(feature = "dwarf")] #[test] fn create_elf_resolver_with_debug_dirs_non_existing_path() { let path = Path::new("/This/Path/Does.Not/Exist");