Perhaps it would make FreeBSD 10-CURRENT/ARM on Raspberry Pi builders happy.
R=golang-dev, dave
CC=golang-dev
https://golang.org/cl/
8008043
}
func TestPointToPointInterface(t *testing.T) {
- switch runtime.GOOS {
- case "darwin":
+ if testing.Short() {
+ t.Skip("skipping test in short mode")
+ }
+ switch {
+ case runtime.GOOS == "darwin":
t.Skipf("skipping read test on %q", runtime.GOOS)
}
if os.Getuid() != 0 {
}
func TestInterfaceArrivalAndDeparture(t *testing.T) {
+ if testing.Short() {
+ t.Skip("skipping test in short mode")
+ }
if os.Getuid() != 0 {
t.Skip("skipping test; must be root")
}