From fc9b5d75e40a9218188ef32b22c8bec9d39eb8d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Canna=C3=B2?= Date: Wed, 6 May 2020 16:13:59 +0200 Subject: [PATCH] Count as passed the tests intentionally skipped on set_testing-t --- test/tap/tests/set_testing-t.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/tap/tests/set_testing-t.cpp b/test/tap/tests/set_testing-t.cpp index 0f08f64e3..8e1f5228d 100644 --- a/test/tap/tests/set_testing-t.cpp +++ b/test/tap/tests/set_testing-t.cpp @@ -410,9 +410,11 @@ void * my_conn_thread(void *arg) { } if (strcmp(username,(char *)"root")) { if (strstr(testCases[r2].command.c_str(),"database")) { + ok(true, "mysql connection [%p], thread_id [%lu], skipped test for command [%s]", mysql, mysql->thread_id, testCases[r2].command.c_str()); continue; } if (strstr(testCases[r2].command.c_str(),"sql_log_bin")) { + ok(true, "mysql connection [%p], thread_id [%lu], skipped test for command [%s]", mysql, mysql->thread_id, testCases[r2].command.c_str()); continue; } }