aboutsummaryrefslogtreecommitdiffstats
path: root/searchsummary/src/tests/juniper/latintokenizertest.cpp
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2022-05-21 13:31:10 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2022-05-21 14:29:19 +0000
commit58a7afd1bd0cd358a8d19bfefd3e0c2c32daecc1 (patch)
tree4ced08d5ed7c7020e3cfb516f135f885334ff27d /searchsummary/src/tests/juniper/latintokenizertest.cpp
parent2c34544abef32f7da1c05a83a3648532afb53186 (diff)
Fold fastlib into vespalib and gc some unused code.
Also move some code only used by juniper up into juniper test module.
Diffstat (limited to 'searchsummary/src/tests/juniper/latintokenizertest.cpp')
-rw-r--r--searchsummary/src/tests/juniper/latintokenizertest.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/searchsummary/src/tests/juniper/latintokenizertest.cpp b/searchsummary/src/tests/juniper/latintokenizertest.cpp
new file mode 100644
index 00000000000..89273ab1ec0
--- /dev/null
+++ b/searchsummary/src/tests/juniper/latintokenizertest.cpp
@@ -0,0 +1,9 @@
+// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+#include "latintokenizertest.h"
+
+int main(int, char **) {
+ LatinTokenizerTest lta;
+ lta.SetStream(&std::cout);
+ lta.Run();
+ return lta.Report();
+}