()
| 256 | |
| 257 | #[test] |
| 258 | fn pcrel_sdata4_on_elf() { |
| 259 | let pe = DwEhPe(DW_EH_PE_pcrel.0 | DW_EH_PE_sdata4.0); |
| 260 | let flags = translate_eh_pe(Some(pe), 8, BinaryFormat::Elf).unwrap(); |
| 261 | assert_generic(flags, RelocationKind::Relative, 32); |
| 262 | } |
| 263 | |
| 264 | #[test] |
| 265 | fn pcrel_sdata4_on_coff() { |
nothing calls this directly
no test coverage detected