blob: dae6fdc76e32dbc5d1a44d3d9020673da84c9ea5 (
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
|
UNITTEST_FOR(ydb/core/blobstorage/groupinfo)
FORK_SUBTESTS()
IF (WITH_VALGRIND)
SIZE(LARGE)
TAG(ya:fat)
ELSE()
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 != "DEBUG")
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()
|