summaryrefslogtreecommitdiffstats
path: root/tests/lookup
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2012-02-21 14:09:32 +0800
committerPeng Wu <alexepico@gmail.com>2012-02-21 14:09:32 +0800
commit62dffb4c3615c275d514ee9428d1688770c6173b (patch)
tree13bc21f7052d15c1fefae58f7d9cc62f6a3d810f /tests/lookup
parent5deda46d8f6c8e922cc31e7958d3558589bb7260 (diff)
downloadlibpinyin-62dffb4c3615c275d514ee9428d1688770c6173b.tar.gz
libpinyin-62dffb4c3615c275d514ee9428d1688770c6173b.tar.xz
libpinyin-62dffb4c3615c275d514ee9428d1688770c6173b.zip
update tests directory
Diffstat (limited to 'tests/lookup')
-rw-r--r--tests/lookup/test_phrase_lookup.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/lookup/test_phrase_lookup.cpp b/tests/lookup/test_phrase_lookup.cpp
index cf08dff..a4676f5 100644
--- a/tests/lookup/test_phrase_lookup.cpp
+++ b/tests/lookup/test_phrase_lookup.cpp
@@ -29,10 +29,10 @@ void print_help(){
}
bool try_phrase_lookup(PhraseLookup * phrase_lookup,
- utf16_t * utf16, glong utf16_len){
+ ucs4_t * ucs4_str, glong ucs4_len){
char * result_string = NULL;
MatchResults results = g_array_new(FALSE, FALSE, sizeof(phrase_token_t));
- phrase_lookup->get_best_match(utf16_len, utf16, results);
+ phrase_lookup->get_best_match(ucs4_len, ucs4_str, results);
#if 0
for ( size_t i = 0; i < results->len; ++i) {
phrase_token_t * token = &g_array_index(results, phrase_token_t, i);
@@ -108,7 +108,7 @@ int main(int argc, char * argv[]){
//check non-ucs2 characters
const glong num_of_chars = g_utf8_strlen(linebuf, -1);
glong len = 0;
- utf16_t * sentence = g_utf8_to_utf16(linebuf, -1, NULL, &len, NULL);
+ ucs4_t * sentence = g_utf8_to_ucs4(linebuf, -1, NULL, &len, NULL);
if ( len != num_of_chars ) {
fprintf(stderr, "non-ucs2 characters are not accepted.\n");
g_free(sentence);