summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAlexander Barkov <alexander.barkov@oracle.com>2011-02-18 17:17:37 +0300
committerAlexander Barkov <alexander.barkov@oracle.com>2011-02-18 17:17:37 +0300
commite2e6eb8f6d3dabbf335870efa29fcb77248ab156 (patch)
treefdfda3e1c7557a36a2b54d2e68c5e4433bfc82ee /tests
parent5f55c23208c746bd1211c09237fe85303dd49567 (diff)
downloadmariadb-git-e2e6eb8f6d3dabbf335870efa29fcb77248ab156.tar.gz
A post-fix for b58036.
Diffstat (limited to 'tests')
-rw-r--r--tests/mysql_client_test.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/mysql_client_test.c b/tests/mysql_client_test.c
index 5a45c132a5f..fc1f2e8293e 100644
--- a/tests/mysql_client_test.c
+++ b/tests/mysql_client_test.c
@@ -18417,7 +18417,7 @@ static void test_bug58036()
if (!opt_silent)
printf("mysql_real_connect() succeeded (failure expected)\n");
mysql_close(conn);
- DIE();
+ DIE("");
}
if (!opt_silent)
@@ -18443,7 +18443,7 @@ static void test_bug58036()
printf("mysql_real_connect() failed: %s (%d)\n",
mysql_error(conn), mysql_errno(conn));
mysql_close(conn);
- DIE();
+ DIE("");
}
mysql_options(conn, MYSQL_SET_CHARSET_NAME, "ucs2");
@@ -18452,7 +18452,7 @@ static void test_bug58036()
if (!opt_silent)
printf("mysql_change_user() succedded, error expected!");
mysql_close(conn);
- DIE();
+ DIE("");
}
if (!opt_silent)