aboutsummaryrefslogtreecommitdiff
path: root/t/06buffer.c
diff options
context:
space:
mode:
authorPřemysl Janouch <p.janouch@gmail.com>2014-10-09 23:47:24 +0200
committerPřemysl Janouch <p.janouch@gmail.com>2014-10-09 23:47:24 +0200
commit5692f32bcfa049fc2b5555b5a883045b217349b9 (patch)
tree512eaa1bece48291ffdf7cf4865a085e6ee0b2cc /t/06buffer.c
parent3465d5553fbe88a75320d1da3f7228619492b036 (diff)
downloadtermo-5692f32bcfa049fc2b5555b5a883045b217349b9.tar.gz
termo-5692f32bcfa049fc2b5555b5a883045b217349b9.tar.xz
termo-5692f32bcfa049fc2b5555b5a883045b217349b9.zip
CMake-ify, rename to termkey2 for the time being
Diffstat (limited to 't/06buffer.c')
-rw-r--r--t/06buffer.c38
1 files changed, 0 insertions, 38 deletions
diff --git a/t/06buffer.c b/t/06buffer.c
deleted file mode 100644
index af415b6..0000000
--- a/t/06buffer.c
+++ /dev/null
@@ -1,38 +0,0 @@
-#include <stdio.h>
-#include "../termkey.h"
-#include "taplib.h"
-
-int main (int argc, char *argv[])
-{
- termkey_t *tk;
- termkey_key_t key;
-
- plan_tests (9);
-
- tk = termkey_new_abstract ("vt100", NULL, 0);
-
- is_int (termkey_get_buffer_remaining (tk), 256,
- "buffer free initially 256");
- is_int (termkey_get_buffer_size (tk), 256,
- "buffer size initially 256");
-
- is_int (termkey_push_bytes (tk, "h", 1), 1, "push_bytes returns 1");
-
- is_int (termkey_get_buffer_remaining (tk), 255,
- "buffer free 255 after push_bytes");
- is_int (termkey_get_buffer_size (tk), 256,
- "buffer size 256 after push_bytes");
-
- ok (!!termkey_set_buffer_size (tk, 512), "buffer set size OK");
-
- is_int (termkey_get_buffer_remaining (tk), 511,
- "buffer free 511 after push_bytes");
- is_int (termkey_get_buffer_size (tk), 512,
- "buffer size 512 after push_bytes");
-
- is_int (termkey_getkey (tk, &key), TERMKEY_RES_KEY,
- "buffered key still useable after resize");
-
- termkey_destroy (tk);
- return exit_status ();
-}