mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-15 03:53:41 +00:00
35 lines
1.5 KiB
Docker
35 lines
1.5 KiB
Docker
# rebuild in #33610
|
|
# docker build -t clickhouse/test-base .
|
|
ARG FROM_TAG=latest
|
|
FROM clickhouse/test-util:$FROM_TAG
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install \
|
|
lcov \
|
|
netbase \
|
|
perl \
|
|
pv \
|
|
ripgrep \
|
|
zstd \
|
|
--yes --no-install-recommends
|
|
|
|
# Sanitizer options for services (clickhouse-server)
|
|
# Set resident memory limit for TSAN to 45GiB (46080MiB) to avoid OOMs in Stress tests
|
|
# and MEMORY_LIMIT_EXCEEDED exceptions in Functional tests (total memory limit in Functional tests is ~55.24 GiB).
|
|
# TSAN will flush shadow memory when reaching this limit.
|
|
# It may cause false-negatives, but it's better than OOM.
|
|
RUN echo "TSAN_OPTIONS='verbosity=1000 halt_on_error=1 history_size=7 memory_limit_mb=46080'" >> /etc/environment
|
|
RUN echo "UBSAN_OPTIONS='print_stacktrace=1'" >> /etc/environment
|
|
RUN echo "MSAN_OPTIONS='abort_on_error=1 poison_in_dtor=1'" >> /etc/environment
|
|
RUN echo "LSAN_OPTIONS='suppressions=/usr/share/clickhouse-test/config/lsan_suppressions.txt'" >> /etc/environment
|
|
# Sanitizer options for current shell (not current, but the one that will be spawned on "docker run")
|
|
# (but w/o verbosity for TSAN, otherwise test.reference will not match)
|
|
ENV TSAN_OPTIONS='halt_on_error=1 history_size=7 memory_limit_mb=46080'
|
|
ENV UBSAN_OPTIONS='print_stacktrace=1'
|
|
ENV MSAN_OPTIONS='abort_on_error=1 poison_in_dtor=1'
|
|
|
|
ENV TZ=Europe/Moscow
|
|
RUN ln -snf "/usr/share/zoneinfo/$TZ" /etc/localtime && echo "$TZ" > /etc/timezone
|
|
|
|
CMD sleep 1
|