blob: 78d020c48bdaf1993e9cc7aca54333335757e3d8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
UNITTEST_FOR(ydb/core/blobstorage/groupinfo)
OWNER(g:kikimr)
FORK_SUBTESTS()
IF (WITH_VALGRIND)
TIMEOUT(1800)
SIZE(LARGE)
TAG(ya:fat)
ELSE()
TIMEOUT(600)
SIZE(MEDIUM)
ENDIF()
PEERDIR(
library/cpp/getopt
library/cpp/svnversion
ydb/core/base
ydb/core/blobstorage/base
ydb/core/blobstorage/groupinfo
ydb/core/erasure
)
SRCS(
blobstorage_groupinfo_iter_ut.cpp
blobstorage_groupinfo_ut.cpp
)
IF (BUILD_TYPE == "RELEASE")
SRCS(
blobstorage_groupinfo_blobmap_ut.cpp
blobstorage_groupinfo_partlayout_ut.cpp
)
ELSE ()
MESSAGE(WARNING "It takes too much time to run test in DEBUG mode, some tests are skipped")
ENDIF ()
END()
|