summaryrefslogtreecommitdiffhomepage
path: root/test/iptables/iptables_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/iptables/iptables_test.go')
-rw-r--r--test/iptables/iptables_test.go46
1 files changed, 26 insertions, 20 deletions
diff --git a/test/iptables/iptables_test.go b/test/iptables/iptables_test.go
index 0c9dee8fe..635beea36 100644
--- a/test/iptables/iptables_test.go
+++ b/test/iptables/iptables_test.go
@@ -160,26 +160,32 @@ func logContainer(output string, err error) {
log.Infof(msg)
}
-func TestFilterInputDropUDP(t *testing.T) {
- if err := singleTest(FilterInputDropUDP{}); err != nil {
- t.Fatal(err)
- }
-}
-
-func TestFilterInputDropUDPPort(t *testing.T) {
- if err := singleTest(FilterInputDropUDPPort{}); err != nil {
- t.Fatal(err)
- }
-}
-
-func TestFilterInputDropDifferentUDPPort(t *testing.T) {
- if err := singleTest(FilterInputDropDifferentUDPPort{}); err != nil {
- t.Fatal(err)
- }
-}
-
-func TestFilterInputDropAll(t *testing.T) {
- if err := singleTest(FilterInputDropAll{}); err != nil {
+// func TestFilterInputDropUDP(t *testing.T) {
+// if err := singleTest(FilterInputDropUDP{}); err != nil {
+// t.Fatal(err)
+// }
+// }
+
+// func TestFilterInputDropUDPPort(t *testing.T) {
+// if err := singleTest(FilterInputDropUDPPort{}); err != nil {
+// t.Fatal(err)
+// }
+// }
+
+// func TestFilterInputDropDifferentUDPPort(t *testing.T) {
+// if err := singleTest(FilterInputDropDifferentUDPPort{}); err != nil {
+// t.Fatal(err)
+// }
+// }
+
+// func TestFilterInputDropAll(t *testing.T) {
+// if err := singleTest(FilterInputDropAll{}); err != nil {
+// t.Fatal(err)
+// }
+// }
+
+func TestFilterInputDropOnlyUDP(t *testing.T) {
+ if err := singleTest(FilterInputDropOnlyUDP{}); err != nil {
t.Fatal(err)
}
}