From 5692f32bcfa049fc2b5555b5a883045b217349b9 Mon Sep 17 00:00:00 2001 From: Přemysl Janouch Date: Thu, 9 Oct 2014 23:47:24 +0200 Subject: CMake-ify, rename to termkey2 for the time being --- t/04flags.c | 40 ---------------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 t/04flags.c (limited to 't/04flags.c') diff --git a/t/04flags.c b/t/04flags.c deleted file mode 100644 index eb6e20b..0000000 --- a/t/04flags.c +++ /dev/null @@ -1,40 +0,0 @@ -#include -#include "../termkey.h" -#include "taplib.h" - -int -main (int argc, char *argv[]) -{ - termkey_t *tk; - termkey_key_t key; - - plan_tests (8); - - tk = termkey_new_abstract ("vt100", NULL, 0); - - termkey_push_bytes (tk, " ", 1); - - is_int (termkey_getkey (tk, &key), TERMKEY_RES_KEY, - "getkey yields RES_KEY 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_push_bytes (tk, " ", 1); - - 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"); - - termkey_destroy (tk); - return exit_status (); -} -- cgit v1.2.3-54-g00ecf