diff options
author | Ian Gudger <igudger@google.com> | 2019-06-05 15:56:21 -0700 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2019-06-05 15:57:27 -0700 |
commit | c08fcaa364e917b19aad0f74a8e3a1c700d0bfcc (patch) | |
tree | 9795e2dc48e00e52659541d52f4c5fa2d7e81c06 /test/syscalls/linux/socket_filesystem.cc | |
parent | 3b950344b3abb1676cd10bf8b455a3355cfcc78d (diff) |
Give test instantiations meaningful names.
PiperOrigin-RevId: 251737069
Diffstat (limited to 'test/syscalls/linux/socket_filesystem.cc')
-rw-r--r-- | test/syscalls/linux/socket_filesystem.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/syscalls/linux/socket_filesystem.cc b/test/syscalls/linux/socket_filesystem.cc index f7cb72df4..e38a320f6 100644 --- a/test/syscalls/linux/socket_filesystem.cc +++ b/test/syscalls/linux/socket_filesystem.cc @@ -31,11 +31,11 @@ std::vector<SocketPairKind> GetSocketPairs() { } INSTANTIATE_TEST_SUITE_P( - AllUnixDomainSockets, AllSocketPairTest, + FilesystemUnixSockets, AllSocketPairTest, ::testing::ValuesIn(IncludeReversals(GetSocketPairs()))); INSTANTIATE_TEST_SUITE_P( - AllUnixDomainSockets, UnixSocketPairTest, + FilesystemUnixSockets, UnixSocketPairTest, ::testing::ValuesIn(IncludeReversals(GetSocketPairs()))); } // namespace testing |