()
| 338 | } |
| 339 | |
| 340 | fn create_sample_v4() -> UnwindDataV4 { |
| 341 | UnwindDataV4 { |
| 342 | path: "/lib/test.so".to_string(), |
| 343 | base_svma: 0x0, |
| 344 | // No `.eh_frame_hdr`, like Valgrind's statically-linked tools |
| 345 | eh_frame_hdr: None, |
| 346 | eh_frame_hdr_svma: None, |
| 347 | eh_frame: vec![5, 6, 7, 8], |
| 348 | eh_frame_svma: 0x200..0x300, |
| 349 | } |
| 350 | } |
| 351 | |
| 352 | #[test] |
| 353 | #[ignore = "one-off generator for the V4 testdata artifact"] |
no outgoing calls