1
0
mirror of https://github.com/mariadb-corporation/mariadb-connector-c.git synced 2025-08-07 02:42:49 +03:00

Travis fixes:

server verification still fails due to wrong hostname - these tests are now disabled for Travis only
Disable test when testing against a MySQL server.
This commit is contained in:
Georg Richter
2020-03-16 14:02:12 +01:00
parent d32add15c8
commit 960dca55ae
3 changed files with 21 additions and 1 deletions

View File

@@ -1428,7 +1428,11 @@ static int test_sslenforce(MYSQL *unused __attribute__((unused)))
static int test_conc457(MYSQL *mysql)
{
MYSQL_RES *result= mysql_list_processes(mysql);
MYSQL_RES *result;
SKIP_MYSQL(mysql);
result= mysql_list_processes(mysql);
FAIL_IF(mysql_field_count(mysql) != 9, "expected 9 columns");
mysql_free_result(result);