From: Peng Wu Date: Mon, 28 Nov 2011 09:54:25 +0000 (+0800) Subject: add more tests for test parser2 X-Git-Tag: 0.4.91~107 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3a77085a17a66bcd9d231dfcefbbf886e79cfe82;p=platform%2Fupstream%2Flibpinyin.git add more tests for test parser2 --- diff --git a/tests/storage/test_parser2.cpp b/tests/storage/test_parser2.cpp index 32b80ff..9ab6bb3 100644 --- a/tests/storage/test_parser2.cpp +++ b/tests/storage/test_parser2.cpp @@ -97,6 +97,16 @@ int main(int argc, char * argv[]) { if ( strcmp ( linebuf, "quit" ) == 0) break; +#if 0 + ChewingKey key; ChewingKeyRest key_rest; + bool success = parser->parse_one_key(options, key, key_rest, + linebuf, strlen(linebuf)); + if (success) + printf("pinyin:%s\t%d\t%d\n", key_rest.get_pinyin_string(), + key_rest.m_raw_begin, key_rest.m_raw_end); +#endif + +#if 1 int len = parser->parse(options, keys, key_rests, linebuf, strlen(linebuf)); printf("parsed %d chars, %d keys.\n", len, keys->len); @@ -110,6 +120,7 @@ int main(int argc, char * argv[]) { key_rest->m_raw_begin, key_rest->m_raw_end); } printf("\n"); +#endif }