From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rob Clark Date: Wed, 13 Sep 2017 18:46:54 -0400 Subject: [U-Boot] [PATCH] test: print_ut: Add test for %ls strings Message-ID: <20170913224657.23321-1-robdclark@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Add a simple test for long strings. Signed-off-by: Rob Clark --- test/print_ut.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/print_ut.c b/test/print_ut.c index baad289972..a42c554bef 100644 --- a/test/print_ut.c +++ b/test/print_ut.c @@ -36,6 +36,9 @@ static int do_ut_print(cmd_tbl_t *cmdtp, int flag, int argc, snprintf(str, 0, "testing none"); assert(*str == 'x'); + sprintf(big_str, "_%ls_", L"foo"); + assert(!strcmp("_foo_", big_str)); + /* Test the banner function */ s = display_options_get_banner(true, str, sizeof(str)); assert(s == str); -- 2.13.5