Disable ASLR for more tests. (#5165)
These show spurious errors with some toolchains due to an address sanitizer bug.
This commit is contained in:
parent
962efa3691
commit
d6bc0c712a
|
|
@ -16,6 +16,7 @@ compile(
|
|||
|
||||
execute(
|
||||
check_finished => 1,
|
||||
aslr_off => 1, # Some GCC versions hit an address-sanitizer bug otherwise
|
||||
);
|
||||
|
||||
ok(1);
|
||||
|
|
|
|||
|
|
@ -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/);
|
||||
|
|
|
|||
Loading…
Reference in New Issue