diff options
author | Sam Balana <sbalana@google.com> | 2021-06-04 13:51:05 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-06-04 13:53:17 -0700 |
commit | 240629524905024c7564d009cbc47c7b44064219 (patch) | |
tree | 51e65661948efc6e57b5c06d7cb1934d09d2986b /test/syscalls/linux/BUILD | |
parent | 86cf56eb71215e24fec49272d915f80c9c569c05 (diff) |
Add bind syscall tests for ICMP and ICMPv6
Updates #5711
Updates #6021
Updates #6022
PiperOrigin-RevId: 377582446
Diffstat (limited to 'test/syscalls/linux/BUILD')
-rw-r--r-- | test/syscalls/linux/BUILD | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/syscalls/linux/BUILD b/test/syscalls/linux/BUILD index 9a912dba8..d8b562e9d 100644 --- a/test/syscalls/linux/BUILD +++ b/test/syscalls/linux/BUILD @@ -1572,10 +1572,13 @@ cc_binary( srcs = ["ping_socket.cc"], linkstatic = 1, deps = [ + ":ip_socket_test_util", ":socket_test_util", "//test/util:file_descriptor", + "@com_google_absl//absl/algorithm:container", + "@com_google_absl//absl/strings", + "@com_google_absl//absl/types:optional", gtest, - "//test/util:save_util", "//test/util:test_main", "//test/util:test_util", ], |