()
| 353 | #[test] |
| 354 | #[ignore] |
| 355 | pub fn dwarf_two_removed_branches() -> Result<()> { |
| 356 | let output = lldb_with_script( |
| 357 | &[ |
| 358 | "-Ccache=n", |
| 359 | "-Oopt-level=0", |
| 360 | "-Ddebug-info", |
| 361 | DWARF_TWO_REMOVED_BRANCHES, |
| 362 | ], |
| 363 | r#"r"#, |
| 364 | )?; |
| 365 | |
| 366 | // We are simply checking that the output compiles. |
| 367 | check_lldb_output( |
| 368 | &output, |
| 369 | r#" |
| 370 | check: exited with status |
| 371 | "#, |
| 372 | )?; |
| 373 | Ok(()) |
| 374 | } |
| 375 | |
| 376 | #[test] |
| 377 | #[ignore] |
nothing calls this directly
no test coverage detected