summaryrefslogtreecommitdiffstats
path: root/storage/src/tests/bucketdb/CMakeLists.txt
blob: 9f8fbf7cf49c6c493f870a4a1e8b93aca6ac9c0e (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
# Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

# TODO: Remove test library when all tests have been migrated to gtest.
vespa_add_library(storage_testbucketdb TEST
    SOURCES
    judymultimaptest.cpp
    lockablemaptest.cpp
    DEPENDS
    storage
    storage_testcommon
)

vespa_add_executable(storage_bucketdb_gtest_runner_app TEST
    SOURCES
    bucketinfotest.cpp
    bucketmanagertest.cpp
    gtest_runner.cpp
    initializertest.cpp
    judyarraytest.cpp
    DEPENDS
    storage
    storage_testcommon
    gtest
)

vespa_add_test(
    NAME storage_bucketdb_gtest_runner_app
    COMMAND storage_bucketdb_gtest_runner_app
)