diff options
author | thegeorg <thegeorg@yandex-team.ru> | 2022-02-10 16:45:12 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:45:12 +0300 |
commit | 49116032d905455a7b1c994e4a696afc885c1e71 (patch) | |
tree | be835aa92c6248212e705f25388ebafcf84bc7a1 /contrib/libs/c-ares | |
parent | 4e839db24a3bbc9f1c610c43d6faaaa99824dcca (diff) | |
download | ydb-49116032d905455a7b1c994e4a696afc885c1e71.tar.gz |
Restoring authorship annotation for <thegeorg@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'contrib/libs/c-ares')
-rw-r--r-- | contrib/libs/c-ares/acountry/ya.make | 2 | ||||
-rw-r--r-- | contrib/libs/c-ares/adig/ya.make | 2 | ||||
-rw-r--r-- | contrib/libs/c-ares/ahost/ya.make | 2 | ||||
-rw-r--r-- | contrib/libs/c-ares/test/ares-test-misc.cc | 8 | ||||
-rw-r--r-- | contrib/libs/c-ares/test/ya.make | 4 | ||||
-rw-r--r-- | contrib/libs/c-ares/ya.make | 6 |
6 files changed, 12 insertions, 12 deletions
diff --git a/contrib/libs/c-ares/acountry/ya.make b/contrib/libs/c-ares/acountry/ya.make index 36eff7729c..58b533d30c 100644 --- a/contrib/libs/c-ares/acountry/ya.make +++ b/contrib/libs/c-ares/acountry/ya.make @@ -2,7 +2,7 @@ PROGRAM(acountry) -OWNER(max42 g:cpp-contrib) +OWNER(max42 g:cpp-contrib) LICENSE(MIT) diff --git a/contrib/libs/c-ares/adig/ya.make b/contrib/libs/c-ares/adig/ya.make index f6bb4bca23..1c8404ebee 100644 --- a/contrib/libs/c-ares/adig/ya.make +++ b/contrib/libs/c-ares/adig/ya.make @@ -2,7 +2,7 @@ PROGRAM(adig) -OWNER(max42 g:cpp-contrib) +OWNER(max42 g:cpp-contrib) LICENSE(MIT) diff --git a/contrib/libs/c-ares/ahost/ya.make b/contrib/libs/c-ares/ahost/ya.make index 35c7976000..299e3f211c 100644 --- a/contrib/libs/c-ares/ahost/ya.make +++ b/contrib/libs/c-ares/ahost/ya.make @@ -2,7 +2,7 @@ PROGRAM(ahost) -OWNER(max42 g:cpp-contrib) +OWNER(max42 g:cpp-contrib) LICENSE(MIT) diff --git a/contrib/libs/c-ares/test/ares-test-misc.cc b/contrib/libs/c-ares/test/ares-test-misc.cc index 6e63b06f29..6fc28a8f97 100644 --- a/contrib/libs/c-ares/test/ares-test-misc.cc +++ b/contrib/libs/c-ares/test/ares-test-misc.cc @@ -27,7 +27,7 @@ TEST_F(DefaultChannelTest, GetServersFailures) { EXPECT_EQ(ARES_ENODATA, ares_get_servers(nullptr, &servers)); } -TEST_F(DefaultChannelTest, SetServers) { +TEST_F(DefaultChannelTest, SetServers) { EXPECT_EQ(ARES_SUCCESS, ares_set_servers(channel_, nullptr)); std::vector<std::string> empty; EXPECT_EQ(empty, GetNameServers(channel_)); @@ -47,7 +47,7 @@ TEST_F(DefaultChannelTest, SetServers) { EXPECT_EQ(expected, GetNameServers(channel_)); } -TEST_F(DefaultChannelTest, SetServersPorts) { +TEST_F(DefaultChannelTest, SetServersPorts) { EXPECT_EQ(ARES_SUCCESS, ares_set_servers_ports(channel_, nullptr)); std::vector<std::string> empty; EXPECT_EQ(empty, GetNameServers(channel_)); @@ -71,7 +71,7 @@ TEST_F(DefaultChannelTest, SetServersPorts) { EXPECT_EQ(expected, GetNameServers(channel_)); } -TEST_F(DefaultChannelTest, SetServersCSV) { +TEST_F(DefaultChannelTest, SetServersCSV) { EXPECT_EQ(ARES_ENODATA, ares_set_servers_csv(nullptr, "1.2.3.4")); EXPECT_EQ(ARES_ENODATA, ares_set_servers_csv(nullptr, "xyzzy,plugh")); EXPECT_EQ(ARES_ENODATA, ares_set_servers_csv(nullptr, "256.1.2.3")); @@ -118,7 +118,7 @@ TEST_F(DefaultChannelTest, SetServersCSV) { EXPECT_EQ(ARES_EBADSTR, ares_set_servers_csv(channel_, "2.3.4.5,1.2.3.4:Z,3.4.5.6")); } -TEST_F(DefaultChannelTest, TimeoutValue) { +TEST_F(DefaultChannelTest, TimeoutValue) { struct timeval tinfo; tinfo.tv_sec = 0; tinfo.tv_usec = 0; diff --git a/contrib/libs/c-ares/test/ya.make b/contrib/libs/c-ares/test/ya.make index 7668d9e027..ef42eab230 100644 --- a/contrib/libs/c-ares/test/ya.make +++ b/contrib/libs/c-ares/test/ya.make @@ -1,8 +1,8 @@ # Generated by devtools/yamaker. -GTEST(arestest) +GTEST(arestest) -OWNER(max42 g:cpp-contrib) +OWNER(max42 g:cpp-contrib) LICENSE(MIT) diff --git a/contrib/libs/c-ares/ya.make b/contrib/libs/c-ares/ya.make index ea37a511f0..bd35762e44 100644 --- a/contrib/libs/c-ares/ya.make +++ b/contrib/libs/c-ares/ya.make @@ -1,4 +1,4 @@ -# Generated by devtools/yamaker from nixpkgs e392df43c9f302d4a0892caaadcad3cd693edf9e. +# Generated by devtools/yamaker from nixpkgs e392df43c9f302d4a0892caaadcad3cd693edf9e. LIBRARY() @@ -17,7 +17,7 @@ LICENSE( MIT AND NTP ) - + LICENSE_TEXTS(.yandex_meta/licenses.list.txt) PEERDIR( @@ -108,7 +108,7 @@ SRCS( windows_port.c ) -CHECK_CONFIG_H(ares_setup.h) +CHECK_CONFIG_H(ares_setup.h) END() |