diff options
author | Zeling Feng <zeling@google.com> | 2021-03-05 11:53:18 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-03-05 11:56:31 -0800 |
commit | 2f0b82a8028019d4c996cf64341f84bb1d1c65b7 (patch) | |
tree | d69937f5cbd2296803d140cf6ad6a1c57fdd269a /test/packetimpact/testbench/BUILD | |
parent | 3e8e2cad881978674737ee3f9ac58b780d172187 (diff) |
Gather uname information from DUT
Some OSs behave slightly differently, but still within the RFC. It can be useful
to have access to uname information from the testbench.
PiperOrigin-RevId: 361193766
Diffstat (limited to 'test/packetimpact/testbench/BUILD')
-rw-r--r-- | test/packetimpact/testbench/BUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/packetimpact/testbench/BUILD b/test/packetimpact/testbench/BUILD index 983c2c030..43b4c7ca1 100644 --- a/test/packetimpact/testbench/BUILD +++ b/test/packetimpact/testbench/BUILD @@ -1,7 +1,6 @@ load("//tools:defs.bzl", "go_library", "go_test") package( - default_visibility = ["//test/packetimpact:__subpackages__"], licenses = ["notice"], ) @@ -15,6 +14,7 @@ go_library( "rawsockets.go", "testbench.go", ], + visibility = ["//test/packetimpact:__subpackages__"], deps = [ "//pkg/tcpip", "//pkg/tcpip/buffer", |