summaryrefslogtreecommitdiffhomepage
path: root/test/syscalls/linux/BUILD
diff options
context:
space:
mode:
authorKevin Krakauer <krakauer@google.com>2019-08-19 10:04:54 -0700
committergVisor bot <gvisor-bot@google.com>2019-08-19 10:05:59 -0700
commitbd826092fecf32a87a3207a23c3795e819babce7 (patch)
tree3d7b675677f695b78b902d1fa0192b234b9ede35 /test/syscalls/linux/BUILD
parent3e4102b2ead18aa768e1b8082d9865a9c567ce4e (diff)
Read iptables via sockopts.
PiperOrigin-RevId: 264180125
Diffstat (limited to 'test/syscalls/linux/BUILD')
-rw-r--r--test/syscalls/linux/BUILD18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/syscalls/linux/BUILD b/test/syscalls/linux/BUILD
index db0a1e661..e2b0716ef 100644
--- a/test/syscalls/linux/BUILD
+++ b/test/syscalls/linux/BUILD
@@ -913,6 +913,24 @@ cc_library(
)
cc_binary(
+ name = "iptables_test",
+ testonly = 1,
+ srcs = [
+ "iptables.cc",
+ ],
+ linkstatic = 1,
+ deps = [
+ ":iptables_types",
+ ":socket_test_util",
+ "//test/util:capability_util",
+ "//test/util:file_descriptor",
+ "//test/util:test_main",
+ "//test/util:test_util",
+ "@com_google_googletest//:gtest",
+ ],
+)
+
+cc_binary(
name = "itimer_test",
testonly = 1,
srcs = ["itimer.cc"],