mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
f83e594218
When compiled with SAFEMALLOC or with Windows Debug CRT, it allocates and initializes 5GB of memory. The effect is 20 minutes of paging and swapping on a 4GB VM. Still allow the test to run with optimized binaries. Memory is not initialized in this case, malloc() of 5GB size will not bring the whole buffer into physical memory.
6 lines
115 B
PHP
6 lines
115 B
PHP
let $is_debug = `select version() like '%debug%'`;
|
|
if ($is_debug)
|
|
{
|
|
skip Does not run in with debug binaries;
|
|
}
|
|
|