aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/actors/core/ut/ya.make
blob: 11b2ea3eb7a07bfaa9e07611f6e64d4e11c471cb (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
40
41
42
43
44
45
46
UNITTEST_FOR(library/cpp/actors/core)

OWNER(
    alexvru
    g:kikimr
)

FORK_SUBTESTS()
IF (SANITIZER_TYPE)
    SIZE(LARGE)
    TIMEOUT(1200)
    TAG(ya:fat)
    SPLIT_FACTOR(20)
    REQUIREMENTS(
        ram:32
    )
ELSE()
    SIZE(MEDIUM)
    TIMEOUT(600)
    REQUIREMENTS(
        ram:16
    )
ENDIF()


PEERDIR(
    library/cpp/actors/interconnect
    library/cpp/actors/testlib
)

SRCS(
    actor_coroutine_ut.cpp 
    actor_ut.cpp 
    actorsystem_ut.cpp 
    ask_ut.cpp
    balancer_ut.cpp
    event_pb_payload_ut.cpp 
    event_pb_ut.cpp
    executor_pool_basic_ut.cpp
    executor_pool_united_ut.cpp
    log_ut.cpp
    memory_tracker_ut.cpp
    scheduler_actor_ut.cpp 
)

END()