(t *testing.T)
| 313 | } |
| 314 | |
| 315 | func TestDisasmIntelSyntax(t *testing.T) { |
| 316 | if (runtime.GOOS != "linux" && runtime.GOOS != "darwin" && runtime.GOOS != "windows") || runtime.GOARCH != "amd64" { |
| 317 | t.Skip("This test only works on x86_64 Linux, macOS or Windows as it tests Intel asm syntax") |
| 318 | } |
| 319 | testDisasm(t, true) |
| 320 | } |
| 321 | |
| 322 | func findSymbol(syms []*plugin.Sym, name string) *plugin.Sym { |
| 323 | for _, s := range syms { |
nothing calls this directly
no test coverage detected
searching dependent graphs…