diff options
author | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-03-15 13:35:56 +0300 |
---|---|---|
committer | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-03-15 13:35:56 +0300 |
commit | 094638589de6a6c9f91fad0005843fc1c1adc957 (patch) | |
tree | 7d55b9e950eb724da222548997547bf6710b1b58 /library/cpp/testing | |
parent | bc921e787bed8a51a43725b78382e806800c44c1 (diff) | |
download | ydb-094638589de6a6c9f91fad0005843fc1c1adc957.tar.gz |
intermediate changes
ref:ca7a95e8c9a9d780f96497136a152091d54e61b5
Diffstat (limited to 'library/cpp/testing')
-rw-r--r-- | library/cpp/testing/benchmark/examples/metrics/ya.make | 20 | ||||
-rw-r--r-- | library/cpp/testing/benchmark/examples/ya.make | 12 | ||||
-rw-r--r-- | library/cpp/testing/benchmark/main/ya.make | 16 | ||||
-rw-r--r-- | library/cpp/testing/benchmark/ya.make | 22 | ||||
-rw-r--r-- | library/cpp/testing/common/ut/ya.make | 19 | ||||
-rw-r--r-- | library/cpp/testing/common/ya.make | 23 | ||||
-rw-r--r-- | library/cpp/testing/gmock_in_unittest/example_ut/ya.make | 13 | ||||
-rw-r--r-- | library/cpp/testing/gmock_in_unittest/ya.make | 17 | ||||
-rw-r--r-- | library/cpp/testing/gtest_extensions/ut/ya.make | 20 | ||||
-rw-r--r-- | library/cpp/testing/gtest_extensions/ya.make | 26 | ||||
-rw-r--r-- | library/cpp/testing/hook/ya.make | 13 | ||||
-rw-r--r-- | library/cpp/testing/unittest/fat/ya.make | 19 | ||||
-rw-r--r-- | library/cpp/testing/unittest/ut/ya.make | 10 | ||||
-rw-r--r-- | library/cpp/testing/unittest/ya.make | 33 | ||||
-rw-r--r-- | library/cpp/testing/unittest_main/ya.make | 14 | ||||
-rw-r--r-- | library/cpp/testing/ya.make | 24 |
16 files changed, 0 insertions, 301 deletions
diff --git a/library/cpp/testing/benchmark/examples/metrics/ya.make b/library/cpp/testing/benchmark/examples/metrics/ya.make deleted file mode 100644 index a9dbdca9fa..0000000000 --- a/library/cpp/testing/benchmark/examples/metrics/ya.make +++ /dev/null @@ -1,20 +0,0 @@ -OWNER( - pg - yazevnul -) - -PY2TEST() - -SIZE(LARGE) - -TAG( - ya:force_sandbox - sb:intel_e5_2660v1 - ya:fat -) - -TEST_SRCS(main.py) - -DEPENDS(library/cpp/testing/benchmark/examples) - -END() diff --git a/library/cpp/testing/benchmark/examples/ya.make b/library/cpp/testing/benchmark/examples/ya.make deleted file mode 100644 index 7e696e127a..0000000000 --- a/library/cpp/testing/benchmark/examples/ya.make +++ /dev/null @@ -1,12 +0,0 @@ -OWNER( - pg - yazevnul -) - -Y_BENCHMARK() - -SRCS( - main.cpp -) - -END() diff --git a/library/cpp/testing/benchmark/main/ya.make b/library/cpp/testing/benchmark/main/ya.make deleted file mode 100644 index d00cdcf9fc..0000000000 --- a/library/cpp/testing/benchmark/main/ya.make +++ /dev/null @@ -1,16 +0,0 @@ -LIBRARY() - -OWNER( - pg - yazevnul -) - -SRCS( - GLOBAL main.cpp -) - -PEERDIR( - library/cpp/testing/benchmark -) - -END() diff --git a/library/cpp/testing/benchmark/ya.make b/library/cpp/testing/benchmark/ya.make deleted file mode 100644 index f42be80698..0000000000 --- a/library/cpp/testing/benchmark/ya.make +++ /dev/null @@ -1,22 +0,0 @@ -LIBRARY() - -OWNER( - pg - yazevnul -) - -SRCS( - bench.cpp - dummy.cpp -) - -PEERDIR( - contrib/libs/re2 - library/cpp/colorizer - library/cpp/getopt/small - library/cpp/json - library/cpp/linear_regression - library/cpp/threading/poor_man_openmp -) - -END() diff --git a/library/cpp/testing/common/ut/ya.make b/library/cpp/testing/common/ut/ya.make deleted file mode 100644 index 053aa38079..0000000000 --- a/library/cpp/testing/common/ut/ya.make +++ /dev/null @@ -1,19 +0,0 @@ -GTEST() -OWNER( - amatanhead - bulatman - thegeorg - g:cpp-contrib -) - -SRCS( - env_ut.cpp - network_ut.cpp - scope_ut.cpp -) - -PEERDIR( - library/cpp/testing/common -) - -END() diff --git a/library/cpp/testing/common/ya.make b/library/cpp/testing/common/ya.make deleted file mode 100644 index 2f4b0ce26e..0000000000 --- a/library/cpp/testing/common/ya.make +++ /dev/null @@ -1,23 +0,0 @@ -LIBRARY() - -OWNER( - amatanhead - bulatman - thegeorg - g:cpp-contrib -) - -SRCS( - env.cpp - network.cpp - probe.cpp - scope.cpp -) - -PEERDIR( - library/cpp/json -) - -END() - -RECURSE_FOR_TESTS(ut) diff --git a/library/cpp/testing/gmock_in_unittest/example_ut/ya.make b/library/cpp/testing/gmock_in_unittest/example_ut/ya.make deleted file mode 100644 index d2e5ee5d2a..0000000000 --- a/library/cpp/testing/gmock_in_unittest/example_ut/ya.make +++ /dev/null @@ -1,13 +0,0 @@ -UNITTEST() - -OWNER(galaxycrab) - -PEERDIR( - library/cpp/testing/gmock_in_unittest -) - -SRCS( - example_ut.cpp -) - -END() diff --git a/library/cpp/testing/gmock_in_unittest/ya.make b/library/cpp/testing/gmock_in_unittest/ya.make deleted file mode 100644 index 5de68ad98d..0000000000 --- a/library/cpp/testing/gmock_in_unittest/ya.make +++ /dev/null @@ -1,17 +0,0 @@ -LIBRARY() - -OWNER(galaxycrab) - -PEERDIR( - contrib/restricted/googletest/googlemock - contrib/restricted/googletest/googletest - library/cpp/testing/gtest_extensions - library/cpp/testing/unittest -) - -SRCS( - events.cpp - GLOBAL registration.cpp -) - -END() diff --git a/library/cpp/testing/gtest_extensions/ut/ya.make b/library/cpp/testing/gtest_extensions/ut/ya.make deleted file mode 100644 index 39b41cecfd..0000000000 --- a/library/cpp/testing/gtest_extensions/ut/ya.make +++ /dev/null @@ -1,20 +0,0 @@ -GTEST() -OWNER( - amatanhead - bulatman - dancingqueue - prettyboy - thegeorg - g:cpp-contrib -) - -SRCS( - gtest_extensions_ut.cpp - probe_ut.cpp -) - -PEERDIR( - library/cpp/testing/gtest_extensions -) - -END() diff --git a/library/cpp/testing/gtest_extensions/ya.make b/library/cpp/testing/gtest_extensions/ya.make deleted file mode 100644 index e24e81e8bd..0000000000 --- a/library/cpp/testing/gtest_extensions/ya.make +++ /dev/null @@ -1,26 +0,0 @@ -LIBRARY() -OWNER( - amatanhead - bulatman - dancingqueue - prettyboy - thegeorg - g:cpp-contrib -) - -PEERDIR( - contrib/restricted/googletest/googlemock - contrib/restricted/googletest/googletest -) - -SRCS( - assertions.cpp - gtest_extensions.cpp - matchers.cpp - pretty_printers.cpp - probe.cpp -) - -END() - -RECURSE_FOR_TESTS(ut) diff --git a/library/cpp/testing/hook/ya.make b/library/cpp/testing/hook/ya.make deleted file mode 100644 index db58f4e0ae..0000000000 --- a/library/cpp/testing/hook/ya.make +++ /dev/null @@ -1,13 +0,0 @@ -LIBRARY() -OWNER( - amatanhead - bulatman - thegeorg - g:cpp-contrib -) - -SRCS( - hook.cpp -) - -END() diff --git a/library/cpp/testing/unittest/fat/ya.make b/library/cpp/testing/unittest/fat/ya.make deleted file mode 100644 index d405e599ee..0000000000 --- a/library/cpp/testing/unittest/fat/ya.make +++ /dev/null @@ -1,19 +0,0 @@ -UNITTEST() - -OWNER(g:yatool) - -SRCS( - test_port_manager.cpp -) - -SIZE(LARGE) - -# We need to run tests at the same time on the single machine -FORK_SUBTESTS() - -TAG( - ya:fat - ya:force_sandbox -) - -END() diff --git a/library/cpp/testing/unittest/ut/ya.make b/library/cpp/testing/unittest/ut/ya.make deleted file mode 100644 index 6d4c0959cc..0000000000 --- a/library/cpp/testing/unittest/ut/ya.make +++ /dev/null @@ -1,10 +0,0 @@ -UNITTEST_FOR(library/cpp/testing/unittest) - -OWNER(snowball) - -SRCS( - main.cpp - registar_ut.cpp -) - -END() diff --git a/library/cpp/testing/unittest/ya.make b/library/cpp/testing/unittest/ya.make deleted file mode 100644 index aaa4f2ba85..0000000000 --- a/library/cpp/testing/unittest/ya.make +++ /dev/null @@ -1,33 +0,0 @@ -LIBRARY() - -PROVIDES(test_framework) - -OWNER( - pg - galaxycrab -) - -PEERDIR( - library/cpp/colorizer - library/cpp/dbg_output - library/cpp/diff - library/cpp/json/writer - library/cpp/testing/common - library/cpp/testing/hook -) - -SRCS( - gtest.cpp - checks.cpp - plugin.cpp - registar.cpp - tests_data.cpp - utmain.cpp -) - -END() - -RECURSE_FOR_TESTS( - fat - ut -) diff --git a/library/cpp/testing/unittest_main/ya.make b/library/cpp/testing/unittest_main/ya.make deleted file mode 100644 index 80a6cc699b..0000000000 --- a/library/cpp/testing/unittest_main/ya.make +++ /dev/null @@ -1,14 +0,0 @@ -LIBRARY() - -OWNER(pg) - -PEERDIR( - library/cpp/testing/unittest - library/cpp/terminate_handler -) - -SRCS( - main.cpp -) - -END() diff --git a/library/cpp/testing/ya.make b/library/cpp/testing/ya.make deleted file mode 100644 index 6a57ac2ee6..0000000000 --- a/library/cpp/testing/ya.make +++ /dev/null @@ -1,24 +0,0 @@ -RECURSE( - common - benchmark - benchmark/examples - benchmark/examples/metrics - benchmark/main - boost_test - boost_test_main - dump_clang_coverage - gbenchmark_main - gmock - gmock_in_unittest - gmock_in_unittest/example_ut - gtest - gtest_boost_extensions - gtest_extensions - gtest_main - gtest_protobuf - hook - mock_server - unittest - unittest_main - urlnorm -) |