diff options
author | Alexander Barkov <alexander.barkov@oracle.com> | 2011-02-18 17:19:55 +0300 |
---|---|---|
committer | Alexander Barkov <alexander.barkov@oracle.com> | 2011-02-18 17:19:55 +0300 |
commit | b7d30e274d18635402cb38e543edf6ed1abd334b (patch) | |
tree | 3012f63ecec74448c368dbb95ee1bd6d9b2e9d42 /tests | |
parent | 7a7c9582833270f784b64384170ae96369a59bc4 (diff) | |
parent | e2e6eb8f6d3dabbf335870efa29fcb77248ab156 (diff) | |
download | mariadb-git-b7d30e274d18635402cb38e543edf6ed1abd334b.tar.gz |
Merging from 5.1
Diffstat (limited to 'tests')
-rw-r--r-- | tests/mysql_client_test.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/mysql_client_test.c b/tests/mysql_client_test.c index fa9e7c670ec..9c06ac0a4ad 100644 --- a/tests/mysql_client_test.c +++ b/tests/mysql_client_test.c @@ -19307,7 +19307,7 @@ static void test_bug58036() if (!opt_silent) printf("mysql_real_connect() succeeded (failure expected)\n"); mysql_close(conn); - DIE(); + DIE(""); } if (!opt_silent) @@ -19333,7 +19333,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"); @@ -19342,7 +19342,7 @@ static void test_bug58036() if (!opt_silent) printf("mysql_change_user() succedded, error expected!"); mysql_close(conn); - DIE(); + DIE(""); } if (!opt_silent) |