summaryrefslogtreecommitdiff
path: root/tests/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test.c')
-rw-r--r--tests/test.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/test.c b/tests/test.c
index b98eae6..4e01a0e 100644
--- a/tests/test.c
+++ b/tests/test.c
@@ -145,6 +145,9 @@ static int test_valid_connection(void)
err |= check_request(ctx, XCB_CREATE_WINDOW, "CreateWindow");
err |= check_request(ctx, XCB_NO_OPERATION, "NoOperation");
err |= check_request(ctx, 126, "Unknown (126)");
+ err |= check_minor(ctx, XCB_CREATE_WINDOW, 0, NULL);
+ err |= check_minor(ctx, XCB_CREATE_WINDOW, 42, NULL);
+ err |= check_minor(ctx, XCB_CREATE_WINDOW, 0xffff, NULL);
err |= check_error(ctx, XCB_REQUEST, "Request");
err |= check_error(ctx, XCB_IMPLEMENTATION, "Implementation");