diff options
author | Kevin Krakauer <krakauer@google.com> | 2019-07-22 17:05:02 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-07-22 17:06:18 -0700 |
commit | 5ddf9adb2b12a2cbccdcf609c5cc140fa0dbd81d (patch) | |
tree | e29d183459766c34e399b9094e21e67af4646d21 /pkg/abi/linux/BUILD | |
parent | d706922d788a1bbc9f1c917af1a08ca86488aab0 (diff) |
Fix up and add some iptables ABI.
PiperOrigin-RevId: 259437060
Diffstat (limited to 'pkg/abi/linux/BUILD')
-rw-r--r-- | pkg/abi/linux/BUILD | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/pkg/abi/linux/BUILD b/pkg/abi/linux/BUILD index 2061b38c0..ba233b93f 100644 --- a/pkg/abi/linux/BUILD +++ b/pkg/abi/linux/BUILD @@ -4,7 +4,7 @@ package(licenses = ["notice"]) -load("//tools/go_stateify:defs.bzl", "go_library") +load("//tools/go_stateify:defs.bzl", "go_library", "go_test") go_library( name = "linux", @@ -62,3 +62,13 @@ go_library( "//pkg/bits", ], ) + +go_test( + name = "linux_test", + size = "small", + srcs = ["netfilter_test.go"], + embed = [":linux"], + deps = [ + "//pkg/binary", + ], +) |