1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Revert "mtr: remove not_valgrind_build"

The original code is correct.

valgrind and asan binaries should be built with a specialiced version of
mem_root that makes it easier to find memory overwrites.
This is what the BUILD scripts is doing.

The specialiced mem_root code allocates a new block for every allocation
which is visiable for any test that depenmds on the default original malloc
size and usage.
This commit is contained in:
Monty
2024-08-19 10:59:57 +03:00
parent ba5482ffc2
commit e51d55a63f
2 changed files with 5 additions and 1 deletions

View File

@ -0,0 +1,4 @@
if (`select version() like '%valgrind%' || version() like '%asan%'`)
{
skip Does not run with binaries built with valgrind or asan;
}