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 | 4da300dae9b377d784b3d4921b51b7798a425cf0 (patch) | |
tree | 3012f63ecec74448c368dbb95ee1bd6d9b2e9d42 /tests | |
parent | ef99776830869f5160adf735d049d9940132c2ba (diff) | |
parent | cd3a8131c63b47be027ea8cbcdec42324679eb08 (diff) | |
download | mariadb-git-4da300dae9b377d784b3d4921b51b7798a425cf0.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) |