From 61ee715927f782dd16f9a7b7ec0e3e989786e0c8 Mon Sep 17 00:00:00 2001 From: Peng Wu Date: Tue, 27 Sep 2011 10:40:26 +0800 Subject: fixes test parser --- tests/storage/test_parser.cpp | 2 +- tests/test_pinyin.cpp | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) (limited to 'tests') diff --git a/tests/storage/test_parser.cpp b/tests/storage/test_parser.cpp index 2323106..aad719b 100644 --- a/tests/storage/test_parser.cpp +++ b/tests/storage/test_parser.cpp @@ -113,7 +113,7 @@ int main (int argc, char * argv []) parser = new PinyinShuangPinParser (SHUANG_PIN_PYJJ); else if (!strcmp (argv[i], "sp-xhe")) parser = new PinyinShuangPinParser (SHUANG_PIN_XHE); - if (!strcmp (argv[i], "zy") || !strcmp (argv[i], "zy-standard") || !strcmp (argv[i], "zy-default")) + else if (!strcmp (argv[i], "zy") || !strcmp (argv[i], "zy-standard") || !strcmp (argv[i], "zy-default")) parser = new PinyinZhuYinParser (); else if (!strcmp (argv[i], "zy-hsu")) parser = new PinyinZhuYinParser (ZHUYIN_HSU); diff --git a/tests/test_pinyin.cpp b/tests/test_pinyin.cpp index 920c324..eb868d3 100644 --- a/tests/test_pinyin.cpp +++ b/tests/test_pinyin.cpp @@ -37,9 +37,8 @@ int main(int argc, char * argv[]){ linebuf[strlen(linebuf) - 1] = '\0'; } - if ( strcmp ( linebuf, "quit" ) == 0) { + if ( strcmp ( linebuf, "quit" ) == 0) break; - } pinyin_parse_more_full_pinyins(instance, linebuf); pinyin_guess_sentence(instance); -- cgit