()
| 323 | #[test] |
| 324 | #[ignore] |
| 325 | pub fn dwarf_fraction_norm() -> Result<()> { |
| 326 | let output = lldb_with_script( |
| 327 | &[ |
| 328 | "-Ccache=n", |
| 329 | "-Oopt-level=0", |
| 330 | "-Ddebug-info", |
| 331 | DWARF_FRACTION_NORM, |
| 332 | ], |
| 333 | r#"b dwarf_fraction_norm.cc:26 |
| 334 | r |
| 335 | p __vmctx->set(),n->denominator |
| 336 | c"#, |
| 337 | )?; |
| 338 | |
| 339 | check_lldb_output( |
| 340 | &output, |
| 341 | r#" |
| 342 | check: Breakpoint 1: no locations (pending) |
| 343 | check: stop reason = breakpoint 1.1 |
| 344 | check: frame #0 |
| 345 | sameln: norm(n=(__ptr = |
| 346 | check: 27 |
| 347 | check: resuming |
| 348 | "#, |
| 349 | )?; |
| 350 | Ok(()) |
| 351 | } |
| 352 | |
| 353 | #[test] |
| 354 | #[ignore] |
nothing calls this directly
no test coverage detected