summaryrefslogtreecommitdiff
path: root/tests/docker/test-full
blob: d71bf9d275d786fc6bdfa0d9aebb8ecb0d6781f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#!/bin/bash
#
# Compile all the targets with as many features enabled as possible
#
# Copyright 2016, 2017 Red Hat Inc.
#
# Authors:
#  Fam Zheng <famz@redhat.com>
#
# This work is licensed under the terms of the GNU GPL, version 2
# or (at your option) any later version. See the COPYING file in
# the top-level directory.

. common.rc

cd "$BUILD_DIR" || exit 1

build_qemu \
    --enable-attr \
    --enable-bluez \
    --enable-brlapi \
    --enable-bsd-user \
    --enable-bzip2 \
    --enable-cap-ng \
    --enable-coroutine-pool \
    --enable-crypto-afalg \
    --enable-curl \
    --enable-curses \
    --enable-debug \
    --enable-debug-info \
    --enable-debug-tcg \
    --enable-docs \
    --enable-fdt \
    --enable-gcrypt \
    --enable-glusterfs \
    --enable-gnutls \
    --enable-gprof \
    --enable-gtk \
    --enable-guest-agent \
    --enable-jemalloc \
    --enable-kvm \
    --enable-libiscsi \
    --enable-libnfs \
    --enable-libssh2 \
    --enable-libusb \
    --enable-linux-aio \
    --enable-linux-user \
    --enable-live-block-migration \
    --enable-lzo \
    --enable-modules \
    --enable-numa \
    --enable-opengl \
    --enable-pie \
    --enable-profiler \
    --enable-qom-cast-debug \
    --enable-rbd \
    --enable-rdma \
    --enable-replication \
    --enable-sdl \
    --enable-seccomp \
    --enable-smartcard \
    --enable-snappy \
    --enable-spice \
    --enable-stack-protector \
    --enable-system \
    --enable-tcg \
    --enable-tcg-interpreter \
    --enable-tools \
    --enable-tpm \
    --enable-trace-backend=ftrace \
    --enable-usb-redir \
    --enable-user \
    --enable-vde \
    --enable-vhost-net \
    --enable-vhost-scsi \
    --enable-vhost-user \
    --enable-vhost-vsock \
    --enable-virtfs \
    --enable-vnc \
    --enable-vnc-jpeg \
    --enable-vnc-png \
    --enable-vnc-sasl \
    --enable-vte \
    --enable-werror \
    --enable-xen \
    --enable-xen-pci-passthrough \
    --enable-xen-pv-domain-build \
    --enable-xfsctl \
&& make check $MAKEFLAGS