(t *testing.T)
| 253 | } |
| 254 | |
| 255 | func skipUnlessLinuxAmd64(t *testing.T) { |
| 256 | if runtime.GOOS != "linux" || runtime.GOARCH != "amd64" { |
| 257 | t.Skip("This test only works on x86-64 Linux") |
| 258 | } |
| 259 | } |
| 260 | |
| 261 | func skipUnlessDarwinAmd64(t *testing.T) { |
| 262 | if runtime.GOOS != "darwin" || runtime.GOARCH != "amd64" { |
no outgoing calls
no test coverage detected
searching dependent graphs…