(t *testing.T)
| 246 | } |
| 247 | |
| 248 | func TestSetFastSymbolization(t *testing.T) { |
| 249 | // Test that multiple calls work. |
| 250 | bu := &Binutils{} |
| 251 | bu.SetFastSymbolization(true) |
| 252 | bu.SetFastSymbolization(false) |
| 253 | } |
| 254 | |
| 255 | func skipUnlessLinuxAmd64(t *testing.T) { |
| 256 | if runtime.GOOS != "linux" || runtime.GOARCH != "amd64" { |
nothing calls this directly
no test coverage detected
searching dependent graphs…