diff options
author | bulatman <bulatman@yandex-team.ru> | 2022-02-10 16:45:50 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:45:50 +0300 |
commit | 6560e4993b14d193f8c879e33a3de5e5eba6e21d (patch) | |
tree | cfd2e2baa05c3196f2caacbb63c32e1df40bc3de /build | |
parent | 7489e4682331202b9c7d863c0898eb83d7b12c2b (diff) | |
download | ydb-6560e4993b14d193f8c879e33a3de5e5eba6e21d.tar.gz |
Restoring authorship annotation for <bulatman@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'build')
-rw-r--r-- | build/rules/contrib_restricted.policy | 30 | ||||
-rw-r--r-- | build/sysincl/misc-win.yml | 2 | ||||
-rw-r--r-- | build/ymake.core.conf | 22 |
3 files changed, 27 insertions, 27 deletions
diff --git a/build/rules/contrib_restricted.policy b/build/rules/contrib_restricted.policy index a83ead1904..f711886f44 100644 --- a/build/rules/contrib_restricted.policy +++ b/build/rules/contrib_restricted.policy @@ -127,7 +127,7 @@ ALLOW juggler/pongerd -> contrib/restricted/boost ALLOW lbs/locator -> contrib/restricted/boost ALLOW library/cpp/testing/boost_test$ -> contrib/restricted/boost/libs/test ALLOW library/cpp/testing/boost_test_main$ -> contrib/restricted/boost/libs/test -ALLOW library/cpp/testing/gtest_boost_extensions -> contrib/restricted/boost +ALLOW library/cpp/testing/gtest_boost_extensions -> contrib/restricted/boost ALLOW logbroker/pipe-parser -> contrib/restricted/boost ALLOW mail -> contrib/restricted/boost ALLOW maps -> contrib/restricted/boost @@ -158,24 +158,24 @@ ALLOW search/meta/scatter/ant -> contrib/restricted/boost ALLOW search/meta/scatter/ut -> contrib/restricted/boost # use GTEST target in ya.make instead of PEERDIRing contrib/restricted/googletest -# and include <library/cpp/testing/gtest.h> instead of <gtest/gtest.h> (<gmock/gmock.h>) -ALLOW contrib -> contrib/restricted/googletest -ALLOW library/cpp/testing/gmock_in_unittest -> contrib/restricted/googletest -ALLOW library/cpp/testing/gtest -> contrib/restricted/googletest -ALLOW library/cpp/testing/gtest_boost_extensions -> contrib/restricted/googletest -ALLOW library/cpp/testing/gtest_extensions -> contrib/restricted/googletest -ALLOW library/cpp/testing/gtest_main -> contrib/restricted/googletest -ALLOW library/cpp/testing/gtest_protobuf -> contrib/restricted/googletest -ALLOW library/python/testing/gtest/test/gtest -> contrib/restricted/googletest -# TODO remove this lines after they will switch to library/cpp/testing/gtest -ALLOW mail -> contrib/restricted/googletest -ALLOW maps/mobile/libs -> contrib/restricted/googletest +# and include <library/cpp/testing/gtest.h> instead of <gtest/gtest.h> (<gmock/gmock.h>) +ALLOW contrib -> contrib/restricted/googletest +ALLOW library/cpp/testing/gmock_in_unittest -> contrib/restricted/googletest +ALLOW library/cpp/testing/gtest -> contrib/restricted/googletest +ALLOW library/cpp/testing/gtest_boost_extensions -> contrib/restricted/googletest +ALLOW library/cpp/testing/gtest_extensions -> contrib/restricted/googletest +ALLOW library/cpp/testing/gtest_main -> contrib/restricted/googletest +ALLOW library/cpp/testing/gtest_protobuf -> contrib/restricted/googletest +ALLOW library/python/testing/gtest/test/gtest -> contrib/restricted/googletest +# TODO remove this lines after they will switch to library/cpp/testing/gtest +ALLOW mail -> contrib/restricted/googletest +ALLOW maps/mobile/libs -> contrib/restricted/googletest ALLOW maps/mobile/bundle -> contrib/restricted/googletest -ALLOW mds -> contrib/restricted/googletest +ALLOW mds -> contrib/restricted/googletest # A mere proxy to allow using gmock in libraries without being bound to specific test framework # See IGNIETFERRO-1827 for details. ALLOW library/cpp/testing/gmock -> contrib/restricted/googletest/googlemock - + # allow usage of MIT part ALLOW .* -> contrib/restricted/librseq/headeronly diff --git a/build/sysincl/misc-win.yml b/build/sysincl/misc-win.yml index e53d4be782..39271d6c8b 100644 --- a/build/sysincl/misc-win.yml +++ b/build/sysincl/misc-win.yml @@ -63,4 +63,4 @@ - includes: - sys/queue.h: contrib/libs/libc_compat/include/windows/sys/queue.h - - sys/uio.h: contrib/libs/libc_compat/include/windows/sys/uio.h + - sys/uio.h: contrib/libs/libc_compat/include/windows/sys/uio.h diff --git a/build/ymake.core.conf b/build/ymake.core.conf index 081833998b..cac0179d04 100644 --- a/build/ymake.core.conf +++ b/build/ymake.core.conf @@ -2255,7 +2255,7 @@ macro STYLE(Globs...) { module GTEST_UGLY: _BASE_PROGRAM { .NODE_TYPE=Program .FINAL_TARGET=no - PEERDIR(contrib/restricted/googletest/googlemock contrib/restricted/googletest/googletest) + PEERDIR(contrib/restricted/googletest/googlemock contrib/restricted/googletest/googletest) ADD_YTEST($MODULE_PREFIX$REALPRJNAME gtest) SET_APPEND(_MAKEFILE_INCLUDE_LIKE_DEPS canondata/result.json) } @@ -2297,28 +2297,28 @@ module EXECTEST: _BARE_UNIT { } # tag:cpp-specific tag:test -### @usage: Y_BENCHMARK([benchmarkname]) +### @usage: Y_BENCHMARK([benchmarkname]) ### ### Benchmark test based on the library/cpp/testing/benchmark. ### ### For more details see: https://wiki.yandex-team.ru/yatool/test/#zapuskbenchmark -module Y_BENCHMARK: PROGRAM { +module Y_BENCHMARK: PROGRAM { PEERDIR(library/cpp/testing/benchmark/main) SET(MODULE_LANG CPP) } # tag:cpp-specific tag:test -### @usage: G_BENCHMARK([benchmarkname]) -### -### Benchmark test based on the google benchmark. -### -### For more details see: https://a.yandex-team.ru/arc/trunk/arcadia/contrib/libs/benchmark/README.md +### @usage: G_BENCHMARK([benchmarkname]) +### +### Benchmark test based on the google benchmark. +### +### For more details see: https://a.yandex-team.ru/arc/trunk/arcadia/contrib/libs/benchmark/README.md module G_BENCHMARK: _BASE_PROGRAM { - PEERDIR(library/cpp/testing/gbenchmark_main) + PEERDIR(library/cpp/testing/gbenchmark_main) ADD_YTEST($MODULE_PREFIX$REALPRJNAME g_benchmark) SET(MODULE_LANG CPP) -} - +} + # tag:test TEST_ROOT=$(TESTS_DATA_ROOT) RESULT_MAX_FILE=0 |