summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 3c4e8a9)
raw | patch | inline | side by side (parent: 3c4e8a9)
author | Sebastian Harl <sh@tokkee.org> | |
Mon, 6 Jan 2014 11:03:47 +0000 (12:03 +0100) | ||
committer | Sebastian Harl <sh@tokkee.org> | |
Mon, 6 Jan 2014 11:03:47 +0000 (12:03 +0100) |
t/frontend/parser_test.c | patch | blob | history |
index 8270cb1d3ac73d13fce9372e9811380ce2d90707..d05947499c4fe50803f9bf8a3e3279515e54085e 100644 (file)
--- a/t/frontend/parser_test.c
+++ b/t/frontend/parser_test.c
/* valid commands */
{ "LIST", -1, 1 },
{ "LIST;", -1, 1 },
+ { "LIST; INVALID", 5, 1 },
/* comments */
{ "/* some comment */", -1, 0 },
/* syntax errors */
{ "INVALID", -1, -1 },
+ { "LIST; INVALID", 8, -1 },
{ "/* some incomplete", -1, -1 },
};