Dockerfile.fedora-asan: don't ignore failures

Same as commit e4000c59a7 ("Dockerfiles: don't ignore make failures").
Seems that Dockerfile.fedora-asan copy/pasted an old version.

Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
Signed-off-by: Andrei Vagin <avagin@virtuozzo.com>
This commit is contained in:
Kirill Kolyshkin 2017-10-01 13:43:23 -07:00 committed by Andrei Vagin
parent 20a460fabf
commit 7a4bb5fddf

View file

@ -10,7 +10,7 @@ COPY . /criu
WORKDIR /criu
ENV CCACHE_DIR=/tmp/.ccache CCACHE_NOCOMPRESS=1 $ENV1=yes
RUN mv .ccache /tmp; make mrproper; ccache -s; \
date; make -j $(nproc) ASAN=1 CC="$CC"; date
RUN mv .ccache /tmp && make mrproper && ccache -s && \
date && make -j $(nproc) ASAN=1 CC="$CC" && date
RUN make ASAN=1 -C test/zdtm -j $(nproc)