summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/CMakeLists.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index 4dfaed1..934bccb 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -12,6 +12,8 @@ target_link_libraries(
pinyin
)
+add_test(NAME pinyin COMMAND test_pinyin)
+
add_executable(
test_phrase
test_phrase.cpp
@@ -22,6 +24,8 @@ target_link_libraries(
pinyin
)
+add_test(NAME phrase COMMAND test_phrase)
+
add_executable(
test_chewing
test_chewing.cpp
@@ -31,3 +35,5 @@ target_link_libraries(
test_chewing
pinyin
)
+
+add_test(NAME chewing COMMAND test_chewing)