aboutsummaryrefslogtreecommitdiff
path: root/t/04flags.c
diff options
context:
space:
mode:
authorPaul LeoNerd Evans <leonerd@leonerd.org.uk>2012-01-18 13:39:50 +0000
committerPaul LeoNerd Evans <leonerd@leonerd.org.uk>2012-01-18 13:39:50 +0000
commit82ad14175cbcc7c0c660720c7a31f8e6f1cefe4e (patch)
tree8c20d19ebbf277de41a1d89167576a4b087f6011 /t/04flags.c
parent082b49f0f8790e2cf98346a03c53f492d9d5dcba (diff)
downloadtermo-82ad14175cbcc7c0c660720c7a31f8e6f1cefe4e.tar.gz
termo-82ad14175cbcc7c0c660720c7a31f8e6f1cefe4e.tar.xz
termo-82ad14175cbcc7c0c660720c7a31f8e6f1cefe4e.zip
Added termkey_push_bytes(), a new API for providing input bytes
Diffstat (limited to 't/04flags.c')
-rw-r--r--t/04flags.c13
1 files changed, 5 insertions, 8 deletions
diff --git a/t/04flags.c b/t/04flags.c
index 8c30483..cf8e2c3 100644
--- a/t/04flags.c
+++ b/t/04flags.c
@@ -4,22 +4,19 @@
int main(int argc, char *argv[])
{
- int fd[2];
TermKey *tk;
TermKeyKey key;
plan_tests(8);
- pipe(fd);
-
/* Sanitise this just in case */
putenv("TERM=vt100");
- tk = termkey_new(fd[0], TERMKEY_FLAG_NOTERMIOS);
+ tk = termkey_new(0, TERMKEY_FLAG_NOTERMIOS);
- write(fd[1], " ", 1);
+ termkey_push_bytes(tk, " ", 1);
- is_int(termkey_waitkey(tk, &key), TERMKEY_RES_KEY, "waitkey 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.number, ' ', "key.code.number after space");
@@ -27,9 +24,9 @@ int main(int argc, char *argv[])
termkey_set_flags(tk, TERMKEY_FLAG_SPACESYMBOL);
- write(fd[1], " ", 1);
+ termkey_push_bytes(tk, " ", 1);
- is_int(termkey_waitkey(tk, &key), TERMKEY_RES_KEY, "waitkey 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.number, TERMKEY_SYM_SPACE, "key.code.sym after space with FLAG_SPACESYMBOL");