(t *testing.T)
| 306 | } |
| 307 | |
| 308 | func TestDisasm(t *testing.T) { |
| 309 | if (runtime.GOOS != "linux" && runtime.GOOS != "darwin" && runtime.GOOS != "windows") || runtime.GOARCH != "amd64" { |
| 310 | t.Skip("This test only works on x86-64 Linux, macOS or Windows") |
| 311 | } |
| 312 | testDisasm(t, false) |
| 313 | } |
| 314 | |
| 315 | func TestDisasmIntelSyntax(t *testing.T) { |
| 316 | if (runtime.GOOS != "linux" && runtime.GOOS != "darwin" && runtime.GOOS != "windows") || runtime.GOARCH != "amd64" { |
nothing calls this directly
no test coverage detected
searching dependent graphs…