[test] Add todo items

This commit is contained in:
Behdad Esfahbod 2011-04-13 01:35:58 -04:00
parent 07cbaac07d
commit 7dea908cd5
1 changed files with 4 additions and 1 deletions

View File

@ -148,6 +148,7 @@ test_buffer_contents (Fixture *fixture, gconstpointer user_data)
} }
hb_buffer_clear (fixture->b); hb_buffer_clear (fixture->b);
/* XXX Make sure clear() doesn't unset other properties? */
g_assert_cmpint (hb_buffer_get_length (fixture->b), ==, 0); g_assert_cmpint (hb_buffer_get_length (fixture->b), ==, 0);
} }
@ -189,7 +190,9 @@ main (int argc, char **argv)
#undef TEST_ADD #undef TEST_ADD
} }
/* XXX test invalid UTF-8 / UTF-16 text input */ /* XXX test invalid UTF-8 / UTF-16 text input (also overlong sequences) */
/* XXX test reverse() and reverse_clusters() */
/* XXX test ensure() and memory management */
return g_test_run(); return g_test_run();
} }