Yuna Tomida
Yuna Tomida
I could fix this aborting error with modification to `test_section_iterator()` and `test_section_contains_nul()` in `test/all/test_object_file.rs` like: ```Rust #[cfg(target_os = "macos")] const SECTION_SPEC: &str = "segmentTest,test"; #[cfg(not(target_os = "macos"))] const SECTION_SPEC: &str...
With fix above (and adding target triple for arm at `test_default_triple()` in test/all/test_targts.rs ), I have 2 test failure on macOS(aarch64) with: 1. section size assertion in `test_section_iterator()`, it's same...
I found where to fix. I will make PR.