From c0a3bc04c7963f8a53447acec77497f28646fdf9 Mon Sep 17 00:00:00 2001 From: Peng Wu Date: Wed, 24 Aug 2011 10:41:12 +0800 Subject: refine test cases --- tests/lookup/test_simple_lookup.cpp | 8 ++++++-- tests/test_pinyin.cpp | 10 +++++++--- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/tests/lookup/test_simple_lookup.cpp b/tests/lookup/test_simple_lookup.cpp index 6a2ebcf..b58f248 100644 --- a/tests/lookup/test_simple_lookup.cpp +++ b/tests/lookup/test_simple_lookup.cpp @@ -54,8 +54,12 @@ int main( int argc, char * argv[]){ char* linebuf = NULL; size_t size = 0; - while( getline(&linebuf, &size, stdin) ){ - linebuf[strlen(linebuf)-1] = '\0'; + ssize_t read; + while( (read = getline(&linebuf, &size, stdin)) != -1 ){ + if ( '\n' == linebuf[strlen(linebuf) - 1] ) { + linebuf[strlen(linebuf) - 1] = '\0'; + } + if ( strcmp ( linebuf, "quit" ) == 0) break; diff --git a/tests/test_pinyin.cpp b/tests/test_pinyin.cpp index ee8f9d2..d335f77 100644 --- a/tests/test_pinyin.cpp +++ b/tests/test_pinyin.cpp @@ -31,9 +31,13 @@ int main(int argc, char * argv[]){ char* linebuf = NULL; size_t size = 0; - while( getline(&linebuf, &size, stdin) ){ - linebuf[strlen(linebuf)-1] = '\0'; - if ( strcmp ( linebuf, "quit" ) == 0) + ssize_t read; + while( (read = getline(&linebuf, &size, stdin)) != -1 ){ + if ( '\n' == linebuf[strlen(linebuf) - 1] ) { + linebuf[strlen(linebuf) - 1] = '\0'; + } + + if ( strcmp ( linebuf, "quit" ) == 0) break; pinyin_parse_more_fulls(context, linebuf, pinyin_keys); -- cgit