Fix compile errors with no HAVE_MALLOC_SIZE. (#8533)
Also adds a new daily CI test, relying on the fact that we don't use malloc_size() on alpine libmusl. Fixes #8531
This commit is contained in:
parent
95ea74549c
commit
dd885780d6
22
.github/workflows/daily.yml
vendored
22
.github/workflows/daily.yml
vendored
@ -222,7 +222,7 @@ jobs:
|
|||||||
./runtest-sentinel &&
|
./runtest-sentinel &&
|
||||||
./runtest-cluster
|
./runtest-cluster
|
||||||
|
|
||||||
test-alpine:
|
test-alpine-jemalloc:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container: alpine:latest
|
container: alpine:latest
|
||||||
steps:
|
steps:
|
||||||
@ -241,3 +241,23 @@ jobs:
|
|||||||
run: ./runtest-sentinel
|
run: ./runtest-sentinel
|
||||||
- name: cluster tests
|
- name: cluster tests
|
||||||
run: ./runtest-cluster
|
run: ./runtest-cluster
|
||||||
|
|
||||||
|
test-alpine-libc-malloc:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container: alpine:latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: make
|
||||||
|
run: |
|
||||||
|
apk add build-base
|
||||||
|
make REDIS_CFLAGS='-Werror' USE_JEMALLOC=no
|
||||||
|
- name: test
|
||||||
|
run: |
|
||||||
|
apk add tcl procps
|
||||||
|
./runtest --accurate --verbose --dump-logs
|
||||||
|
- name: module api test
|
||||||
|
run: ./runtest-moduleapi --verbose
|
||||||
|
- name: sentinel tests
|
||||||
|
run: ./runtest-sentinel
|
||||||
|
- name: cluster tests
|
||||||
|
run: ./runtest-cluster
|
||||||
|
@ -32,6 +32,7 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
#include <assert.h>
|
||||||
|
|
||||||
/* This function provide us access to the original libc free(). This is useful
|
/* This function provide us access to the original libc free(). This is useful
|
||||||
* for instance to free results obtained by backtrace_symbols(). We need
|
* for instance to free results obtained by backtrace_symbols(). We need
|
||||||
@ -49,18 +50,14 @@ void zlibc_free(void *ptr) {
|
|||||||
|
|
||||||
#ifdef HAVE_MALLOC_SIZE
|
#ifdef HAVE_MALLOC_SIZE
|
||||||
#define PREFIX_SIZE (0)
|
#define PREFIX_SIZE (0)
|
||||||
|
#define ASSERT_NO_SIZE_OVERFLOW(sz)
|
||||||
#else
|
#else
|
||||||
#if defined(__sun) || defined(__sparc) || defined(__sparc__)
|
#if defined(__sun) || defined(__sparc) || defined(__sparc__)
|
||||||
#define PREFIX_SIZE (sizeof(long long))
|
#define PREFIX_SIZE (sizeof(long long))
|
||||||
#else
|
#else
|
||||||
#define PREFIX_SIZE (sizeof(size_t))
|
#define PREFIX_SIZE (sizeof(size_t))
|
||||||
#endif
|
#endif
|
||||||
#endif
|
|
||||||
|
|
||||||
#if PREFIX_SIZE > 0
|
|
||||||
#define ASSERT_NO_SIZE_OVERFLOW(sz) assert((sz) + PREFIX_SIZE > (sz))
|
#define ASSERT_NO_SIZE_OVERFLOW(sz) assert((sz) + PREFIX_SIZE > (sz))
|
||||||
#else
|
|
||||||
#define ASSERT_NO_SIZE_OVERFLOW(sz)
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Explicitly override malloc/free etc when using tcmalloc. */
|
/* Explicitly override malloc/free etc when using tcmalloc. */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user