(result)
| 12 | const probeTargetExitSignal = 'SIGSEGV'; |
| 13 | |
| 14 | function isProbeSegvTeardown(result) { |
| 15 | if (result?.event !== 'error') { return false; } |
| 16 | const error = result.error; |
| 17 | if (error?.signal !== probeTargetExitSignal) { return false; } |
| 18 | return error.code === 'probe_target_exit' || error.code === 'probe_failure'; |
| 19 | } |
| 20 | |
| 21 | function findProbeSegvTeardownLine(output) { |
| 22 | const signalPrefix = `Target exited with signal ${probeTargetExitSignal}`; |
no outgoing calls
no test coverage detected
searching dependent graphs…