From e44b28120c4f84c06f0b15e6ac6f43a1eeb4ae66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20Jaramago=20Fern=C3=A1ndez?= Date: Mon, 12 Sep 2022 21:58:39 +0200 Subject: [PATCH] Add missing mandatory call to 'plan' from 'tap' suite for 'max_connections_ff-t' --- test/tap/tests/max_connections_ff-t.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/tap/tests/max_connections_ff-t.cpp b/test/tap/tests/max_connections_ff-t.cpp index 68db29d18..0ac9c7881 100644 --- a/test/tap/tests/max_connections_ff-t.cpp +++ b/test/tap/tests/max_connections_ff-t.cpp @@ -423,6 +423,11 @@ int main(int argc, char** argv) { return EXIT_FAILURE; } + plan( + 1*2 + // 'test_ff_sess_exceeds_max_conns' + 2*2 // 'test_ff_only_one_free_conn' + ); + MYSQL* proxy_admin = mysql_init(NULL); if (!mysql_real_connect(proxy_admin, cl.host, cl.admin_username, cl.admin_password, NULL, cl.admin_port, NULL, 0)) { fprintf(stderr, "File %s, line %d, Error: %s\n", __FILE__, __LINE__, mysql_error(proxy_admin));