()
| 352 | #[test] |
| 353 | #[ignore = "one-off generator for the V4 testdata artifact"] |
| 354 | fn generate_v4_testdata() { |
| 355 | let compat = UnwindDataCompat::V4(create_sample_v4()); |
| 356 | let bytes = bincode::serialize(&compat).unwrap(); |
| 357 | std::fs::write("testdata/unwind_data_v4.bin", bytes).unwrap(); |
| 358 | } |
| 359 | |
| 360 | #[test] |
| 361 | fn test_parse_v2_as_v4_should_error() { |
nothing calls this directly
no test coverage detected