summaryrefslogtreecommitdiffstats
path: root/storage/src/tests/distributor/CMakeLists.txt
blob: c5d23badfd65658bf0a0402028bb31fefa400784 (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
# Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
vespa_add_library(storage_testdistributor TEST
    SOURCES
    blockingoperationstartertest.cpp
    bucketdbmetricupdatertest.cpp
    bucketgctimecalculatortest.cpp
    bucketstateoperationtest.cpp
    distributor_host_info_reporter_test.cpp
    distributortest.cpp
    distributortestutil.cpp
    externaloperationhandlertest.cpp
    garbagecollectiontest.cpp
    getoperationtest.cpp
    idealstatemanagertest.cpp
    joinbuckettest.cpp
    maintenanceschedulertest.cpp
    mergelimitertest.cpp
    mergeoperationtest.cpp
    messagesenderstub.cpp
    nodeinfotest.cpp
    nodemaintenancestatstrackertest.cpp
    operation_sequencer_test.cpp
    operationtargetresolvertest.cpp
    ownership_transfer_safe_time_point_calculator_test.cpp
    pendingmessagetrackertest.cpp
    persistence_metrics_set_test.cpp
    removebucketoperationtest.cpp
    removelocationtest.cpp
    removeoperationtest.cpp
    simplebucketprioritydatabasetest.cpp
    simplemaintenancescannertest.cpp
    splitbuckettest.cpp
    statecheckerstest.cpp
    statoperationtest.cpp
    statusreporterdelegatetest.cpp
    throttlingoperationstartertest.cpp
    twophaseupdateoperationtest.cpp
    updateoperationtest.cpp
    visitoroperationtest.cpp
    DEPENDS
    storage_distributor
    storage_testcommon
    storage_testhostreporter
)

vespa_add_executable(storage_distributor_gtest_runner_app TEST
    SOURCES
    btree_bucket_database_test.cpp
    bucketdatabasetest.cpp
    bucketdbupdatertest.cpp
    mapbucketdatabasetest.cpp
    putoperationtest.cpp
    # TODO: Depend on storage_testdistributor when all tests have been migrated
    # Fixture etc. dupes with non-gtest runner :
    distributortestutil.cpp
    bucket_db_prune_elision_test.cpp
    messagesenderstub.cpp
    gtest_runner.cpp
    DEPENDS
    storage_distributor
    storage_testcommon
    storage_testhostreporter
    gtest
)

vespa_add_test(
    NAME storage_distributor_gtest_runner_app
    COMMAND storage_distributor_gtest_runner_app
)