mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 00:33:55 -06:00
tests: make docker-test-debug@fedora run sanitizers
Since --enable-debug no longer enable sanitizers, we need explicit --enable-sanitizers. llvm package is required for llvm-symbolizer, to get symbols in backtraces. Add make V=1 to get details about failing tests. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Message-Id: <20180312120849.20073-1-marcandre.lureau@redhat.com> Signed-off-by: Fam Zheng <famz@redhat.com>
This commit is contained in:
parent
b16a54da06
commit
02f769b7ee
2 changed files with 4 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash -e
|
||||
#
|
||||
# Compile and check with clang & --enable-debug.
|
||||
# Compile and check with clang & --enable-debug --enable-sanitizers.
|
||||
#
|
||||
# Copyright (c) 2016-2018 Red Hat Inc.
|
||||
#
|
||||
|
@ -19,8 +19,8 @@ requires clang asan
|
|||
cd "$BUILD_DIR"
|
||||
|
||||
OPTS="--cxx=clang++ --cc=clang --host-cc=clang"
|
||||
OPTS="--enable-debug $OPTS"
|
||||
OPTS="--enable-debug --enable-sanitizers $OPTS"
|
||||
|
||||
build_qemu $OPTS
|
||||
make $MAKEFLAGS check
|
||||
make $MAKEFLAGS V=1 check
|
||||
install_qemu
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue