aboutsummaryrefslogtreecommitdiffstats
path: root/fsa/src/alltest/CMakeLists.txt
blob: 08dc8f647cc184c5b60b3ddb87c8f19b617807b3 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
vespa_add_executable(fsa_conceptnet_test_app
    SOURCES
    conceptnet_test.cpp
    DEPENDS
    vespafsamanagers
    vespafsa
)
vespa_add_executable(fsa_detector_test_app
    SOURCES
    detector_test.cpp
    DEPENDS
    vespafsa
)
vespa_add_executable(fsa_fsa_test_app
    SOURCES
    fsa_test.cpp
    DEPENDS
    vespafsa
)
vespa_add_executable(fsa_fsa_create_test_app
    SOURCES
    fsa_create_test.cpp
    DEPENDS
    vespafsa
)
vespa_add_executable(fsa_fsa_perf_test_app
    SOURCES
    fsa_perftest.cpp
    DEPENDS
    vespafsa
)
vespa_add_executable(fsa_fsamanager_test_app
    SOURCES
    fsamanager_test.cpp
    DEPENDS
    vespafsamanagers
    vespafsa
)
vespa_add_executable(fsa_lookup_test_app
    SOURCES
    lookup_test.cpp
    DEPENDS
    vespafsa
)
vespa_add_executable(fsa_ngram_test_app
    SOURCES
    ngram_test.cpp
    DEPENDS
    vespafsa
)
vespa_add_executable(fsa_segmenter_test_app
    SOURCES
    segmenter_test.cpp
    DEPENDS
    vespafsa
)
vespa_add_executable(fsa_vectorizer_test_app
    SOURCES
    vectorizer_test.cpp
    DEPENDS
    vespafsa
)
vespa_add_executable(fsa_vectorizer_perf_test_app TEST
    SOURCES
    vectorizer_perftest.cpp
    DEPENDS
    vespafsa
)
vespa_add_test(NAME fsa_vectorizer_perf_test_app NO_VALGRIND COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/alltest.sh 
               DEPENDS fsa_conceptnet_test_app fsa_detector_test_app fsa_fsa_test_app fsa_fsa_create_test_app 
                       fsa_fsa_perf_test_app fsa_fsamanager_test_app fsa_lookup_test_app fsa_ngram_test_app
                       fsa_segmenter_test_app fsa_vectorizer_test_app fsa_vectorizer_perf_test_app)