diff options
author | Ghanan Gowripalan <ghanan@google.com> | 2021-07-22 16:34:55 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-07-22 16:37:15 -0700 |
commit | aa2698170041e9bc00542378269231b5eaeffd5d (patch) | |
tree | e033d115eee728364e8cb3bd6e11fe037a25dad0 /test/runner/setup_container | |
parent | 24487496a30666103f21c2d42be69d0f8ba2b388 (diff) |
Move socket_test_util to //test/util
...and rename the library to socket_util.
PiperOrigin-RevId: 386348306
Diffstat (limited to 'test/runner/setup_container')
-rw-r--r-- | test/runner/setup_container/BUILD | 2 | ||||
-rw-r--r-- | test/runner/setup_container/setup_container.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/runner/setup_container/BUILD b/test/runner/setup_container/BUILD index 5b99d1de9..f879ef649 100644 --- a/test/runner/setup_container/BUILD +++ b/test/runner/setup_container/BUILD @@ -12,8 +12,8 @@ cc_binary( visibility = ["//test/runner:__subpackages__"], deps = [ "//test/syscalls/linux:socket_netlink_util", - "//test/syscalls/linux:socket_test_util", "//test/util:capability_util", "//test/util:posix_error", + "//test/util:socket_util", ], ) diff --git a/test/runner/setup_container/setup_container.cc b/test/runner/setup_container/setup_container.cc index 9a4e3fb8b..e6fae37e1 100644 --- a/test/runner/setup_container/setup_container.cc +++ b/test/runner/setup_container/setup_container.cc @@ -17,9 +17,9 @@ #include <unistd.h> #include "test/syscalls/linux/socket_netlink_util.h" -#include "test/syscalls/linux/socket_test_util.h" #include "test/util/capability_util.h" #include "test/util/posix_error.h" +#include "test/util/socket_util.h" namespace gvisor { namespace testing { |