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/perf | |
parent | 24487496a30666103f21c2d42be69d0f8ba2b388 (diff) |
Move socket_test_util to //test/util
...and rename the library to socket_util.
PiperOrigin-RevId: 386348306
Diffstat (limited to 'test/perf')
-rw-r--r-- | test/perf/linux/BUILD | 2 | ||||
-rw-r--r-- | test/perf/linux/send_recv_benchmark.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/perf/linux/BUILD b/test/perf/linux/BUILD index dd1d2438c..e76e359ff 100644 --- a/test/perf/linux/BUILD +++ b/test/perf/linux/BUILD @@ -27,10 +27,10 @@ cc_binary( deps = [ gbenchmark, gtest, - "//test/syscalls/linux:socket_test_util", "//test/util:file_descriptor", "//test/util:logging", "//test/util:posix_error", + "//test/util:socket_util", "//test/util:test_main", "//test/util:test_util", "//test/util:thread_util", diff --git a/test/perf/linux/send_recv_benchmark.cc b/test/perf/linux/send_recv_benchmark.cc index d73e49523..41509e211 100644 --- a/test/perf/linux/send_recv_benchmark.cc +++ b/test/perf/linux/send_recv_benchmark.cc @@ -23,10 +23,10 @@ #include "gtest/gtest.h" #include "absl/synchronization/notification.h" #include "benchmark/benchmark.h" -#include "test/syscalls/linux/socket_test_util.h" #include "test/util/file_descriptor.h" #include "test/util/logging.h" #include "test/util/posix_error.h" +#include "test/util/socket_util.h" #include "test/util/test_util.h" #include "test/util/thread_util.h" |