diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2014-09-28 05:56:13 +0200 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2014-09-28 13:03:04 +0200 |
commit | 3465d5553fbe88a75320d1da3f7228619492b036 (patch) | |
tree | b2086113248a918c8863dadb58a5736a2be75583 /t/04flags.c | |
parent | 36bc6cd0952b2eddc17e7da803d85decf96d32cc (diff) | |
download | termo-3465d5553fbe88a75320d1da3f7228619492b036.tar.gz termo-3465d5553fbe88a75320d1da3f7228619492b036.tar.xz termo-3465d5553fbe88a75320d1da3f7228619492b036.zip |
Make the tests work again
Our UTF-8 parsing now behaves differently, though.
Diffstat (limited to 't/04flags.c')
-rw-r--r-- | t/04flags.c | 43 |
1 files changed, 24 insertions, 19 deletions
diff --git a/t/04flags.c b/t/04flags.c index b81f7f7..eb6e20b 100644 --- a/t/04flags.c +++ b/t/04flags.c @@ -2,34 +2,39 @@ #include "../termkey.h" #include "taplib.h" -int main(int argc, char *argv[]) +int +main (int argc, char *argv[]) { - TermKey *tk; - TermKeyKey key; + termkey_t *tk; + termkey_key_t key; - plan_tests(8); + plan_tests (8); - tk = termkey_new_abstract("vt100", 0); + tk = termkey_new_abstract ("vt100", NULL, 0); - termkey_push_bytes(tk, " ", 1); + termkey_push_bytes (tk, " ", 1); - is_int(termkey_getkey(tk, &key), TERMKEY_RES_KEY, "getkey yields RES_KEY after space"); + is_int (termkey_getkey (tk, &key), TERMKEY_RES_KEY, + "getkey yields RES_KEY after space"); - is_int(key.type, TERMKEY_TYPE_UNICODE, "key.type after space"); - is_int(key.code.codepoint, ' ', "key.code.codepoint after space"); - is_int(key.modifiers, 0, "key.modifiers after space"); + is_int (key.type, TERMKEY_TYPE_KEY, "key.type after space"); + is_int (key.code.codepoint, ' ', "key.code.codepoint after space"); + is_int (key.modifiers, 0, "key.modifiers after space"); - termkey_set_flags(tk, TERMKEY_FLAG_SPACESYMBOL); + termkey_set_flags (tk, TERMKEY_FLAG_SPACESYMBOL); - termkey_push_bytes(tk, " ", 1); + termkey_push_bytes (tk, " ", 1); - is_int(termkey_getkey(tk, &key), TERMKEY_RES_KEY, "getkey yields RES_KEY after space"); + is_int (termkey_getkey (tk, &key), TERMKEY_RES_KEY, + "getkey yields RES_KEY after space"); - is_int(key.type, TERMKEY_TYPE_KEYSYM, "key.type after space with FLAG_SPACESYMBOL"); - is_int(key.code.sym, TERMKEY_SYM_SPACE, "key.code.sym after space with FLAG_SPACESYMBOL"); - is_int(key.modifiers, 0, "key.modifiers after space with FLAG_SPACESYMBOL"); + is_int (key.type, TERMKEY_TYPE_KEYSYM, + "key.type after space with FLAG_SPACESYMBOL"); + is_int (key.code.sym, TERMKEY_SYM_SPACE, + "key.code.sym after space with FLAG_SPACESYMBOL"); + is_int (key.modifiers, 0, + "key.modifiers after space with FLAG_SPACESYMBOL"); - termkey_destroy(tk); - - return exit_status(); + termkey_destroy (tk); + return exit_status (); } |