mirror of
https://github.com/MariaDB/server.git
synced 2026-04-30 04:05:32 +02:00
Remove dumping of some not needed core's when running test suite
Before this patch running full mtr generated some 70 cores (at least on systemd). Now no cores should be generated. - Changed DBUG_ABORT()'s used by mysql-test-run to DBUG_SUICIDE() - Changed DBUG_ABORT() used to crash server with core to DBUG_ASSERT(0) - DBUG_ASSERT now flushes DBUG files
This commit is contained in:
parent
94bbe8ad58
commit
8e722064f7
11 changed files with 15 additions and 15 deletions
|
|
@ -1457,7 +1457,7 @@ static void debug_sync_execute(THD *thd, st_debug_sync_action *action)
|
|||
ER_DEBUG_SYNC_TIMEOUT,
|
||||
ER_THD(thd, ER_DEBUG_SYNC_TIMEOUT));
|
||||
thd->abort_on_warning= save_abort_on_warning;
|
||||
DBUG_EXECUTE_IF("debug_sync_abort_on_timeout", DBUG_ABORT(););
|
||||
DBUG_EXECUTE_IF("debug_sync_abort_on_timeout", DBUG_ASSERT(0););
|
||||
break;
|
||||
}
|
||||
error= 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue