Disable ASLR for more tests. (#5165)

These show spurious errors with some toolchains due to an address sanitizer bug.
This commit is contained in:
Geza Lore 2024-06-09 14:32:31 +01:00 committed by GitHub
parent 962efa3691
commit d6bc0c712a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View File

@ -16,6 +16,7 @@ compile(
execute(
check_finished => 1,
aslr_off => 1, # Some GCC versions hit an address-sanitizer bug otherwise
);
ok(1);

View File

@ -18,6 +18,7 @@ compile(
execute(
check_finished => 1,
aslr_off => 1, # Some GCC versions hit an address-sanitizer bug otherwise
);
file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.mk", qr/VL_DEBUG=1/);