()
| 82 | #[test] |
| 83 | #[ignore] |
| 84 | pub fn dwarf_fib_wasm() -> Result<()> { |
| 85 | let output = lldb_with_script( |
| 86 | &[ |
| 87 | "-Ccache=n", |
| 88 | "-Ddebug-info", |
| 89 | "-Oopt-level=0", |
| 90 | "--invoke", |
| 91 | "fib", |
| 92 | DWARF_FIB_WASM, |
| 93 | "3", |
| 94 | ], |
| 95 | r#"b fib |
| 96 | r |
| 97 | fr v |
| 98 | c"#, |
| 99 | )?; |
| 100 | |
| 101 | check_lldb_output( |
| 102 | &output, |
| 103 | r#" |
| 104 | check: Breakpoint 1: no locations (pending) |
| 105 | check: Unable to resolve breakpoint to any actual locations. |
| 106 | check: 1 location added to breakpoint 1 |
| 107 | check: stop reason = breakpoint 1.1 |
| 108 | check: frame #0 |
| 109 | sameln: JIT |
| 110 | sameln: fib(n=3) |
| 111 | check: n = 3 |
| 112 | check: a = 0 |
| 113 | check: resuming |
| 114 | check: exited with status |
| 115 | "#, |
| 116 | )?; |
| 117 | Ok(()) |
| 118 | } |
| 119 | |
| 120 | #[test] |
| 121 | #[ignore] |
nothing calls this directly
no test coverage detected