diff options
author | Lennart Poettering <lennart@poettering.net> | 2018-10-22 16:37:10 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2018-11-16 15:52:22 +0100 |
commit | 52ecf1958d30e09551b3b7c618e4c9d652c27259 (patch) | |
tree | 709c59adff08172cd24e8227b84c4885db560fda /src/test/test-locale-util.c | |
parent | 4e96eb682c187a08fb8560e89b27d46bc2b46223 (diff) | |
download | systemd-52ecf1958d30e09551b3b7c618e4c9d652c27259.tar.gz |
locale-util: add special glyph support for check marks/cross marks
Diffstat (limited to 'src/test/test-locale-util.c')
-rw-r--r-- | src/test/test-locale-util.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/test/test-locale-util.c b/src/test/test-locale-util.c index 3634534782..6d0f24eeea 100644 --- a/src/test/test-locale-util.c +++ b/src/test/test-locale-util.c @@ -65,7 +65,7 @@ static void test_keymaps(void) { #define dump_glyph(x) log_info(STRINGIFY(x) ": %s", special_glyph(x)) static void dump_special_glyphs(void) { - assert_cc(MU + 1 == _SPECIAL_GLYPH_MAX); + assert_cc(CROSS_MARK + 1 == _SPECIAL_GLYPH_MAX); log_info("/* %s */", __func__); @@ -80,6 +80,9 @@ static void dump_special_glyphs(void) { dump_glyph(ARROW); dump_glyph(MDASH); dump_glyph(ELLIPSIS); + dump_glyph(MU); + dump_glyph(CHECK_MARK); + dump_glyph(CROSS_MARK); } int main(int argc, char *argv[]) { |