summaryrefslogtreecommitdiffstats
path: root/fastlib
diff options
context:
space:
mode:
authorVegard Sjonfjell <vegard@yahoo-inc.com>2016-06-16 14:20:40 +0200
committerVegard Sjonfjell <vegard@yahoo-inc.com>2016-06-16 14:20:40 +0200
commit9ffb5969ff851b6661d966b182ab4cdc90bb7100 (patch)
tree70991e9edd4b6010f95cb2a0f20b39ad84395bb6 /fastlib
parent63f4017a6f42955a182f0a1a33cfe6449b090704 (diff)
Declared test executables as tests with TEST parameter
Diffstat (limited to 'fastlib')
-rw-r--r--fastlib/src/vespa/fastlib/io/tests/CMakeLists.txt4
-rw-r--r--fastlib/src/vespa/fastlib/net/tests/CMakeLists.txt2
-rw-r--r--fastlib/src/vespa/fastlib/text/tests/CMakeLists.txt6
-rw-r--r--fastlib/src/vespa/fastlib/util/tests/CMakeLists.txt6
4 files changed, 9 insertions, 9 deletions
diff --git a/fastlib/src/vespa/fastlib/io/tests/CMakeLists.txt b/fastlib/src/vespa/fastlib/io/tests/CMakeLists.txt
index 06705ef1294..29912156b59 100644
--- a/fastlib/src/vespa/fastlib/io/tests/CMakeLists.txt
+++ b/fastlib/src/vespa/fastlib/io/tests/CMakeLists.txt
@@ -1,12 +1,12 @@
# Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-vespa_add_executable(fastlib_bufferedstreamtest_app
+vespa_add_executable(fastlib_bufferedstreamtest_app TEST
SOURCES
bufferedstreamtest.cpp
DEPENDS
fastlib_io
)
vespa_add_test(NAME fastlib_bufferedstreamtest_app COMMAND fastlib_bufferedstreamtest_app fastlib_bufferedstreamtest_app)
-vespa_add_executable(fastlib_bufferedfiletest_app
+vespa_add_executable(fastlib_bufferedfiletest_app TEST
SOURCES
bufferedfiletest.cpp
DEPENDS
diff --git a/fastlib/src/vespa/fastlib/net/tests/CMakeLists.txt b/fastlib/src/vespa/fastlib/net/tests/CMakeLists.txt
index bb6bdd420b3..72957df223e 100644
--- a/fastlib/src/vespa/fastlib/net/tests/CMakeLists.txt
+++ b/fastlib/src/vespa/fastlib/net/tests/CMakeLists.txt
@@ -1,5 +1,5 @@
# Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-vespa_add_executable(fastlib_httpheaderparsertest_app
+vespa_add_executable(fastlib_httpheaderparsertest_app TEST
SOURCES
httpheaderparsertest.cpp
DEPENDS
diff --git a/fastlib/src/vespa/fastlib/text/tests/CMakeLists.txt b/fastlib/src/vespa/fastlib/text/tests/CMakeLists.txt
index de9bb279126..e0c137151ca 100644
--- a/fastlib/src/vespa/fastlib/text/tests/CMakeLists.txt
+++ b/fastlib/src/vespa/fastlib/text/tests/CMakeLists.txt
@@ -1,19 +1,19 @@
# Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-vespa_add_executable(fastlib_unicodeutiltest_app
+vespa_add_executable(fastlib_unicodeutiltest_app TEST
SOURCES
unicodeutiltest.cpp
DEPENDS
fastlib_text
)
vespa_add_test(NAME fastlib_unicodeutiltest_app NO_VALGRIND COMMAND fastlib_unicodeutiltest_app)
-vespa_add_executable(fastlib_latintokenizertest_app
+vespa_add_executable(fastlib_latintokenizertest_app TEST
SOURCES
latintokenizertest.cpp
DEPENDS
fastlib_text
)
vespa_add_test(NAME fastlib_latintokenizertest_app NO_VALGRIND COMMAND fastlib_latintokenizertest_app)
-vespa_add_executable(fastlib_wordfolderstest_app
+vespa_add_executable(fastlib_wordfolderstest_app TEST
SOURCES
wordfolderstest.cpp
DEPENDS
diff --git a/fastlib/src/vespa/fastlib/util/tests/CMakeLists.txt b/fastlib/src/vespa/fastlib/util/tests/CMakeLists.txt
index 8d45ffd58b0..3cd980552fe 100644
--- a/fastlib/src/vespa/fastlib/util/tests/CMakeLists.txt
+++ b/fastlib/src/vespa/fastlib/util/tests/CMakeLists.txt
@@ -1,19 +1,19 @@
# Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-vespa_add_executable(fastlib_base64test_app
+vespa_add_executable(fastlib_base64test_app TEST
SOURCES
base64test.cpp
DEPENDS
fastlib_util
)
vespa_add_test(NAME fastlib_base64test_app NO_VALGRIND COMMAND fastlib_base64test_app fastlib_base64test_app)
-vespa_add_executable(fastlib_bagtest_app
+vespa_add_executable(fastlib_bagtest_app TEST
SOURCES
bagtest.cpp
DEPENDS
fastlib_util
)
vespa_add_test(NAME fastlib_bagtest_app NO_VALGRIND COMMAND fastlib_bagtest_app)
-vespa_add_executable(fastlib_wildcard_match_test_app
+vespa_add_executable(fastlib_wildcard_match_test_app TEST
SOURCES
wildcard_match_test.cpp
DEPENDS