Skip to content

Commit f0cadea

Browse files
authored
fix flapping unit tests (#9953)
1 parent 2a5dadb commit f0cadea

File tree

3 files changed

+31
-1
lines changed

3 files changed

+31
-1
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
UNITTEST_FOR(ydb/core/statistics/service)
2+
3+
FORK_SUBTESTS()
4+
5+
IF (WITH_VALGRIND)
6+
TIMEOUT(3600)
7+
SIZE(LARGE)
8+
TAG(ya:fat)
9+
ELSE()
10+
TIMEOUT(600)
11+
SIZE(MEDIUM)
12+
ENDIF()
13+
14+
YQL_LAST_ABI_VERSION()
15+
16+
PEERDIR(
17+
library/cpp/testing/unittest
18+
ydb/core/protos
19+
ydb/core/testlib/default
20+
ydb/core/statistics/ut_common
21+
)
22+
23+
SRCS(
24+
ut_http_request.cpp
25+
)
26+
27+
END()
28+

ydb/core/statistics/service/ut/ya.make

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,10 @@ PEERDIR(
2323
SRCS(
2424
ut_basic_statistics.cpp
2525
ut_service.cpp
26-
ut_http_request.cpp
2726
)
2827

2928
END()
3029

30+
RECURSE_FOR_TESTS(
31+
ut_http
32+
)

0 commit comments

Comments
 (0)