()
| 158 | #[test] |
| 159 | #[ignore] |
| 160 | pub fn dwarf_fib_wasm_split4() -> Result<()> { |
| 161 | let output = lldb_with_script( |
| 162 | &[ |
| 163 | "-Ccache=n", |
| 164 | "-Ddebug-info", |
| 165 | "-Oopt-level=0", |
| 166 | "--invoke", |
| 167 | "fib", |
| 168 | DWARF_FIB_WASM_SPLIT4, |
| 169 | "3", |
| 170 | ], |
| 171 | r#"b fib |
| 172 | r |
| 173 | fr v |
| 174 | c"#, |
| 175 | )?; |
| 176 | |
| 177 | check_lldb_output( |
| 178 | &output, |
| 179 | r#" |
| 180 | check: Breakpoint 1: no locations (pending) |
| 181 | check: Unable to resolve breakpoint to any actual locations. |
| 182 | check: 1 location added to breakpoint 1 |
| 183 | check: stop reason = breakpoint 1.1 |
| 184 | check: frame #0 |
| 185 | sameln: JIT |
| 186 | sameln: fib(n=3) |
| 187 | check: n = 3 |
| 188 | check: a = 0 |
| 189 | check: resuming |
| 190 | check: exited with status |
| 191 | "#, |
| 192 | )?; |
| 193 | Ok(()) |
| 194 | } |
| 195 | |
| 196 | #[test] |
| 197 | #[ignore] |
nothing calls this directly
no test coverage detected