(level int)
| 39 | } |
| 40 | |
| 41 | func functionName(level int) (name string) { |
| 42 | if name = testAddrMap[level]; name != "" { |
| 43 | return name |
| 44 | } |
| 45 | return fmt.Sprintf("fun%d", level) |
| 46 | } |
| 47 | |
| 48 | func TestAddr2Liner(t *testing.T) { |
| 49 | const offset = 0x500 |
no outgoing calls
no test coverage detected
searching dependent graphs…