()
| 263 | |
| 264 | #[test] |
| 265 | fn pcrel_sdata4_on_coff() { |
| 266 | let pe = DwEhPe(DW_EH_PE_pcrel.0 | DW_EH_PE_sdata4.0); |
| 267 | let flags = translate_eh_pe(Some(pe), 8, BinaryFormat::Coff).unwrap(); |
| 268 | assert_generic(flags, RelocationKind::Relative, 32); |
| 269 | } |
| 270 | |
| 271 | #[test] |
| 272 | fn pcrel_on_macho_is_rejected() { |
nothing calls this directly
no test coverage detected