aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/regex/pire/ut/ya.make
blob: 0277d88f8c5e526e91b6f1a83cdcc2270725e028 (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
# this test in not linked into build tree with ReCURSE and is built by unittest/library

UNITTEST()

OWNER(
    g:util
    davenger
)
 
SET(PIRETESTSDIR contrib/libs/pire/ut)

CFLAGS(-DPIRE_NO_CONFIG) 

PEERDIR(
    library/cpp/regex/pire
)

SRCDIR(
    ${PIRETESTSDIR}
)
 
ADDINCL( 
    contrib/libs/pire/pire 
    contrib/libs/pire/ut 
) 

SRCS(
    pire_ut.cpp
    capture_ut.cpp
    count_ut.cpp
    glyph_ut.cpp
    easy_ut.cpp
    read_unicode_ut.cpp
    regexp_ut.cpp
    approx_matching_ut.cpp
)

SIZE(MEDIUM)

TIMEOUT(600)

PIRE_INLINE(inline_ut.cpp)

END()