diff options
author | Arthur Sfez <asfez@google.com> | 2021-05-11 10:23:06 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-05-11 10:25:33 -0700 |
commit | 60bdf7ed31bc32bb8413cfdb67cd906ca3d5955a (patch) | |
tree | c78188b5336a782abc8d84151269d50fa268d7bc /pkg/tcpip/testutil/BUILD | |
parent | 1daabac237ffb2b7d5711d87bfadc531dc457d08 (diff) |
Move multicounter testutil functions out of network/ip
This is in preparation of having aggregated NIC stats at the stack
level. These validation functions will be needed outside of the
network layer packages to test aggregated NIC stats.
PiperOrigin-RevId: 373180565
Diffstat (limited to 'pkg/tcpip/testutil/BUILD')
-rw-r--r-- | pkg/tcpip/testutil/BUILD | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/pkg/tcpip/testutil/BUILD b/pkg/tcpip/testutil/BUILD index 472545a5d..02ee86ff1 100644 --- a/pkg/tcpip/testutil/BUILD +++ b/pkg/tcpip/testutil/BUILD @@ -5,7 +5,10 @@ package(licenses = ["notice"]) go_library( name = "testutil", testonly = True, - srcs = ["testutil.go"], + srcs = [ + "testutil.go", + "testutil_unsafe.go", + ], visibility = ["//visibility:public"], deps = ["//pkg/tcpip"], ) |