From a3b88040185e7bc927056475bfcc91b955d8dba5 Mon Sep 17 00:00:00 2001 From: Paul LeoNerd Evans Date: Fri, 1 Apr 2011 10:48:15 +0100 Subject: Ensure strpkey can parse numbered function keys --- t/12strpkey.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 't/12strpkey.c') diff --git a/t/12strpkey.c b/t/12strpkey.c index 71c3f5d..363d6e8 100644 --- a/t/12strpkey.c +++ b/t/12strpkey.c @@ -9,7 +9,7 @@ int main(int argc, char *argv[]) #define CLEAR_KEY do { key.type = -1; key.code.codepoint = -1; key.modifiers = -1; key.utf8[0] = 0; } while(0) - plan_tests(44); + plan_tests(48); tk = termkey_new(0, TERMKEY_FLAG_NOTERMIOS); @@ -84,6 +84,13 @@ int main(int argc, char *argv[]) is_int(key.code.sym, TERMKEY_SYM_UP, "key.code.codepoint for sym/Up/0"); is_int(key.modifiers, 0, "key.modifiers for sym/Up/0"); + CLEAR_KEY; + res = termkey_strpkey(tk, "F5", &key, 0); + is_int(res, TERMKEY_RES_KEY, "result for func/5/0"); + is_int(key.type, TERMKEY_TYPE_FUNCTION, "key.type for func/5/0"); + is_int(key.code.number, 5, "key.code.number for func/5/0"); + is_int(key.modifiers, 0, "key.modifiers for func/5/0"); + termkey_destroy(tk); return exit_status(); -- cgit v1.2.3