From a6c3af022645d60556ae3e4583a674d5de6e2262 Mon Sep 17 00:00:00 2001 From: Davanum Srinivas Date: Wed, 5 Jul 2017 18:05:12 -0400 Subject: [PATCH] iptables_test should not run on OSX or Windows Fix for failing tests. Let's just skip building iptables_test.go on non-linux platforms. Fixes #48509 --- pkg/util/iptables/iptables_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/util/iptables/iptables_test.go b/pkg/util/iptables/iptables_test.go index c7b3fbb5981..7b672d146ab 100644 --- a/pkg/util/iptables/iptables_test.go +++ b/pkg/util/iptables/iptables_test.go @@ -1,3 +1,5 @@ +// +build linux + /* Copyright 2014 The Kubernetes Authors.