(t *testing.T)
| 265 | } |
| 266 | |
| 267 | func skipUnlessWindowsAmd64(t *testing.T) { |
| 268 | if runtime.GOOS != "windows" || runtime.GOARCH != "amd64" { |
| 269 | t.Skip("This test only works on x86-64 Windows") |
| 270 | } |
| 271 | } |
| 272 | |
| 273 | func testDisasm(t *testing.T, intelSyntax bool) { |
| 274 | _, llvmObjdump, buObjdump := findObjdump([]string{""}) |
no outgoing calls
no test coverage detected
searching dependent graphs…