summaryrefslogtreecommitdiffstats
path: root/storage/src/tests/persistence/filestorage/CMakeLists.txt
blob: 3827b6ac319b53aff068b4c8584124cfdba7ae16 (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
# 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_testfilestorage TEST
    SOURCES
    deactivatebucketstest.cpp
    deletebuckettest.cpp
    filestormanagertest.cpp
    filestormodifiedbucketstest.cpp
    mergeblockingtest.cpp
    modifiedbucketcheckertest.cpp
    operationabortingtest.cpp
    sanitycheckeddeletetest.cpp
    singlebucketjointest.cpp
    DEPENDS
    storage
    storageapi
    storage_testpersistence_common
)

vespa_add_executable(storage_filestorage_gtest_runner_app TEST
    SOURCES
    gtest_runner.cpp
    DEPENDS
    storage
    storageapi
    storage_testpersistence_common
    gtest
)

vespa_add_test(
    NAME storage_filestorage_gtest_runner_app
    COMMAND storage_filestorage_gtest_runner_app
)