This commit is contained in:
Alexey Milovidov 2024-03-09 09:22:14 +01:00
parent 8a46eace13
commit 194de2066c

View File

@ -61,8 +61,8 @@ if (ENABLE_CHECK_HEAVY_BUILDS)
# set CPU time limit to 1000 seconds # set CPU time limit to 1000 seconds
set (RLIMIT_CPU 1000) set (RLIMIT_CPU 1000)
# -fsanitize=memory is too heavy # -fsanitize=memory and address are too heavy
if (SANITIZE STREQUAL "memory") if (SANITIZE)
set (RLIMIT_DATA 10000000000) # 10G set (RLIMIT_DATA 10000000000) # 10G
endif() endif()