From: Jeremy Kerr Date: Tue, 23 Sep 2014 07:07:14 +0000 (+0800) Subject: tests/lib/test-fold: Add mbs test with separators X-Git-Tag: v1.0.0~106 X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=commitdiff_plain;h=2b49a92ff84a8ec06ec0f97e36f0f813eaa46764;hp=3aef1b6d1f465596ebf7883a50efcf4d6f0ffcf4 tests/lib/test-fold: Add mbs test with separators Ensure we're doing the correct thing with mbs + separators in the fold code. Signed-off-by: Jeremy Kerr --- diff --git a/test/lib/test-fold.c b/test/lib/test-fold.c index 474892d..2aee39d 100644 --- a/test/lib/test-fold.c +++ b/test/lib/test-fold.c @@ -88,8 +88,19 @@ struct test test_mbs = { }, }; +struct test test_mbs_sep = { + .in = "從主功 能表 畫面中,選 取啟 動選項。", + .linelen = 15, + .out = { + "從主功 能表", + "畫面中,選", + "取啟 動選項。", + NULL, + }, +}; + static struct test *tests[] = { - &test_split, &test_fold_line, &test_break, &test_mbs, + &test_split, &test_fold_line, &test_break, &test_mbs, &test_mbs_sep, }; static void __attribute__((noreturn)) fail(struct ctx *ctx,