aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/actors/interconnect/ut_huge_cluster/ya.make
blob: 828783323d98ddd9f9479390716ba793813bd992 (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
UNITTEST()

IF (SANITIZER_TYPE OR WITH_VALGRIND)
    TIMEOUT(3600)
    SIZE(LARGE)
    TAG(ya:fat)
ELSE()
    TIMEOUT(600)
    SIZE(MEDIUM)
ENDIF()

IF (BUILD_TYPE == "RELEASE" OR BUILD_TYPE == "RELWITHDEBINFO")
    SRCS(
        huge_cluster.cpp
    )
ELSE ()
    MESSAGE(WARNING "It takes too much time to run test in DEBUG mode, some tests are skipped")
ENDIF ()

PEERDIR(
    library/cpp/actors/core
    library/cpp/actors/interconnect
    library/cpp/actors/interconnect/ut/lib
    library/cpp/actors/interconnect/ut/protos
    library/cpp/testing/unittest
    library/cpp/actors/testlib
)

REQUIREMENTS(
    cpu:4
    ram:32
)

END()