summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/stringcomp.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/stringcomp.c b/test/stringcomp.c
index e93791a..7d13340 100644
--- a/test/stringcomp.c
+++ b/test/stringcomp.c
@@ -72,6 +72,18 @@ main(int argc, char *argv[])
keymap = test_compile_string(ctx, "");
assert(!keymap);
+ /* Make sure we can recompile our output for a normal keymap from rules. */
+ keymap = test_compile_rules(ctx, NULL, NULL,
+ "ru,ca,de,us", ",multix,neo,intl", NULL);
+ assert(keymap);
+ dump = xkb_keymap_get_as_string(keymap, XKB_KEYMAP_USE_ORIGINAL_FORMAT);
+ assert(dump);
+ xkb_keymap_unref(keymap);
+ keymap = test_compile_string(ctx, dump);
+ assert(keymap);
+ xkb_keymap_unref(keymap);
+ free(dump);
+
xkb_context_unref(ctx);
return 0;