From 2b49a92ff84a8ec06ec0f97e36f0f813eaa46764 Mon Sep 17 00:00:00 2001 From: Jeremy Kerr Date: Tue, 23 Sep 2014 15:07:14 +0800 Subject: [PATCH] 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 --- test/lib/test-fold.c | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) 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, -- 2.39.2