From 79907a4f8429aef161add59b3d026cf2c734c1aa Mon Sep 17 00:00:00 2001 From: AKASHI Takahiro Date: Wed, 18 Sep 2019 10:26:30 +0900 Subject: [PATCH] test: add tests for u16_strcmp() New seven test cases for u16_strcmp() are added under Unicode unit test, which should be executed by "ut unicode" command. Signed-off-by: AKASHI Takahiro Reviewed-by: Heinrich Schuchardt --- test/unicode_ut.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/test/unicode_ut.c b/test/unicode_ut.c index 1ccd36e7c9..8875cdc6b2 100644 --- a/test/unicode_ut.c +++ b/test/unicode_ut.c @@ -567,6 +567,19 @@ static int unicode_test_utf_to_upper(struct unit_test_state *uts) } UNICODE_TEST(unicode_test_utf_to_upper); +static int unicode_test_u16_strncmp(struct unit_test_state *uts) +{ + ut_assert(u16_strncmp(L"abc", L"abc", 3) == 0); + ut_assert(u16_strncmp(L"abcdef", L"abcghi", 3) == 0); + ut_assert(u16_strncmp(L"abcdef", L"abcghi", 6) < 0); + ut_assert(u16_strncmp(L"abcghi", L"abcdef", 6) > 0); + ut_assert(u16_strcmp(L"abc", L"abc") == 0); + ut_assert(u16_strcmp(L"abcdef", L"deghi") < 0); + ut_assert(u16_strcmp(L"deghi", L"abcdef") > 0); + return 0; +} +UNICODE_TEST(unicode_test_u16_strncmp); + int do_ut_unicode(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) { struct unit_test *tests = ll_entry_start(struct unit_test, unicode_test);