1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Test case for bug#28075

This commit is contained in:
andrey@whirlpool.mysql.com
2007-05-22 18:18:39 +02:00
parent ce856126d9
commit ed4144e528

View File

@ -16073,6 +16073,28 @@ static void test_bug24179()
} }
/*
Bug#28075 "COM_DEBUG crashes mysqld"
*/
static void test_bug28075()
{
int rc;
MYSQL_STMT *stmt;
DBUG_ENTER("test_bug28075");
myheader("test_bug28075");
rc= mysql_dump_debug_info(mysql);
DIE_UNLESS(rc == 0);
rc= mysql_ping(mysql);
DIE_UNLESS(rc == 0);
DBUG_VOID_RETURN;
}
/* /*
Read and parse arguments and MySQL options from my.cnf Read and parse arguments and MySQL options from my.cnf
*/ */
@ -16357,6 +16379,7 @@ static struct my_tests_st my_tests[]= {
{ "test_status", test_status }, { "test_status", test_status },
{ "test_bug24179", test_bug24179 }, { "test_bug24179", test_bug24179 },
{ "test_ps_query_cache", test_ps_query_cache }, { "test_ps_query_cache", test_ps_query_cache },
{ "test_bug28075", test_bug28075 },
{ 0, 0 } { 0, 0 }
}; };