MCPcopy Create free account
hub / github.com/CodSpeedHQ/codspeed / test_parse_v4_as_v4

Function test_parse_v4_as_v4

crates/runner-shared/src/unwind_data.rs:417–424  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

415
416 #[test]
417 fn test_parse_v4_as_v4() {
418 // Parse V4 binary artifact as V4 using UnwindData::parse
419 let parsed_v4 = UnwindData::parse(V4_BINARY).expect("Failed to parse V4 data as V4");
420
421 // Should match expected V4 data (without an eh_frame_hdr)
422 let expected_v4 = create_sample_v4();
423 assert_eq!(parsed_v4, expected_v4);
424 }
425
426 #[test]
427 fn test_parse_v2_as_v2() {

Callers

nothing calls this directly

Calls 1

create_sample_v4Function · 0.85

Tested by

no test coverage detected