From 56497646b76e2fba802b996426be46cba32e6362 Mon Sep 17 00:00:00 2001 From: Georg Richter Date: Sun, 14 Mar 2021 11:53:28 +0100 Subject: [PATCH] Disable failing tests when running against MaxScale. --- unittest/libmariadb/ps_bugs.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/unittest/libmariadb/ps_bugs.c b/unittest/libmariadb/ps_bugs.c index aafb507f..c39aacae 100644 --- a/unittest/libmariadb/ps_bugs.c +++ b/unittest/libmariadb/ps_bugs.c @@ -2606,6 +2606,7 @@ static int test_bug5194(MYSQL *mysql) const int uint16_max= 65535; int nrows, i; + SKIP_MAXSCALE; stmt_text= "drop table if exists t1"; rc= mysql_real_query(mysql, SL(stmt_text)); @@ -4547,6 +4548,7 @@ static int test_conc217(MYSQL *mysql) MYSQL_STMT *stmt= mysql_stmt_init(mysql); int rc; + SKIP_MAXSCALE; rc= mariadb_stmt_execute_direct(stmt, "SELECT 1 FROM nonexisting_table", -1); FAIL_IF(rc==0, "Expected error\n"); rc= mysql_query(mysql, "drop table if exists t_count");