diff options
author | Andres Freund | 2023-08-12 20:06:04 +0000 |
---|---|---|
committer | Andres Freund | 2023-08-12 22:08:07 +0000 |
commit | 17ebbdf7de192c340762cb852ce615aefa191c95 (patch) | |
tree | 92b8531cdd246aa7e541ebba9d1bf15651ba33d8 | |
parent | c36b636096a1aac4fd5d7c8c5d11ed2bb6349d0f (diff) |
ci: macos: Remove use of -DRANDOMIZE_ALLOCATED_MEMORY
RANDOMIZE_ALLOCATED_MEMORY causes a measurable slowdown. Macos is, by far, the
most expensive platform for CI, therefore it doesn't make sense to run such a
test there.
Ubsan and asan on linux should detect most of the the cases of uninitialized
memory, so it doesn't really seem worth using -DRANDOMIZE_ALLOCATED_MEMORY in
another instance type.
Author: Andres Freund <[email protected]>
Reviewed-by: Heikki Linnakangas <[email protected]>
Discussion: https://postgr.es/m/[email protected]
Backpatch: 16-, where 89d16b635 added the use of -DRANDOMIZE_ALLOCATED_MEMORY
-rw-r--r-- | .cirrus.yml | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index d260f15c4e2..b742aaf6863 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -434,7 +434,6 @@ task: CC: ccache cc CXX: ccache c++ - CPPFLAGS: -DRANDOMIZE_ALLOCATED_MEMORY CFLAGS: -Og -ggdb CXXFLAGS: -Og -ggdb |