(target string, data []byte, fn func([]byte))
| 101 | } |
| 102 | |
| 103 | func runWithCapture(target string, data []byte, fn func([]byte)) { |
| 104 | defer func() { |
| 105 | if r := recover(); r != nil { |
| 106 | recordCrash(target, r, debug.Stack(), data) |
| 107 | } |
| 108 | }() |
| 109 | fn(data) |
| 110 | } |
| 111 | |
| 112 | // Verifies: SYS-REQ-035 |
| 113 | func FuzzDeleteNative(f *testing.F) { |
no test coverage detected