aboutsummaryrefslogtreecommitdiffstats
path: root/searchsummary/src/tests/juniper/CMakeLists.txt
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2022-05-20 10:56:26 +0200
committerGitHub <noreply@github.com>2022-05-20 10:56:26 +0200
commit16e4b58f78662bc9a77070917b2b616d44be68c3 (patch)
tree383c33cf5c1c00e1ad916041106185588ac3feda /searchsummary/src/tests/juniper/CMakeLists.txt
parent2e1bf435671d233ac70635c1bc338da0153aec86 (diff)
parent5ecf186af848c4a518d7268fcb452b264fba939a (diff)
Merge pull request #22674 from vespa-engine/balder/fold-juniper-into-searchsummary
Fold juniper into searchsummary library.
Diffstat (limited to 'searchsummary/src/tests/juniper/CMakeLists.txt')
-rw-r--r--searchsummary/src/tests/juniper/CMakeLists.txt73
1 files changed, 73 insertions, 0 deletions
diff --git a/searchsummary/src/tests/juniper/CMakeLists.txt b/searchsummary/src/tests/juniper/CMakeLists.txt
new file mode 100644
index 00000000000..d15e91f1f63
--- /dev/null
+++ b/searchsummary/src/tests/juniper/CMakeLists.txt
@@ -0,0 +1,73 @@
+# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+vespa_add_executable(juniper_mcandTest_app TEST
+ SOURCES
+ mcandTest.cpp
+ mcandTestApp.cpp
+ testenv.cpp
+ DEPENDS
+ searchsummary
+ fastlib_fast_testsuite
+)
+vespa_add_test(NAME juniper_mcandTest_app COMMAND juniper_mcandTest_app)
+vespa_add_executable(juniper_queryparserTest_app TEST
+ SOURCES
+ queryparserTest.cpp
+ queryparserTestApp.cpp
+ fakerewriter.cpp
+ testenv.cpp
+ DEPENDS
+ searchsummary
+ fastlib_fast_testsuite
+)
+vespa_add_test(NAME juniper_queryparserTest_app COMMAND juniper_queryparserTest_app)
+vespa_add_executable(juniper_matchobjectTest_app TEST
+ SOURCES
+ matchobjectTest.cpp
+ matchobjectTestApp.cpp
+ testenv.cpp
+ fakerewriter.cpp
+ DEPENDS
+ searchsummary
+ fastlib_fast_testsuite
+)
+vespa_add_test(NAME juniper_matchobjectTest_app COMMAND juniper_matchobjectTest_app)
+vespa_add_executable(juniper_appender_test_app TEST
+ SOURCES
+ appender_test.cpp
+ DEPENDS
+ searchsummary
+ fastlib_fast_testsuite
+)
+vespa_add_test(NAME juniper_appender_test_app COMMAND juniper_appender_test_app)
+vespa_add_executable(juniper_queryvisitor_test_app TEST
+ SOURCES
+ queryvisitor_test.cpp
+ DEPENDS
+ searchsummary
+ fastlib_fast_testsuite
+)
+vespa_add_test(NAME juniper_queryvisitor_test_app COMMAND juniper_queryvisitor_test_app)
+vespa_add_executable(juniper_auxTest_app TEST
+ SOURCES
+ auxTest.cpp
+ auxTestApp.cpp
+ testenv.cpp
+ DEPENDS
+ searchsummary
+ fastlib_fast_testsuite
+)
+vespa_add_test(NAME juniper_auxTest_app COMMAND juniper_auxTest_app)
+vespa_add_executable(juniper_SrcTestSuite_app TEST
+ SOURCES
+ mcandTest.cpp
+ queryparserTest.cpp
+ fakerewriter.cpp
+ SrcTestSuite.cpp
+ matchobjectTest.cpp
+ auxTest.cpp
+ testenv.cpp
+ DEPENDS
+ searchsummary
+ fastlib_fast_testsuite
+)
+vespa_add_test(NAME juniper_SrcTestSuite_app COMMAND juniper_SrcTestSuite_app)