fpu: Bound increment for scalbn
[qemu.git] / tests / docker / Makefile.include
blobde87341528890b6fd036e80ea128a12cd99a726e
1 # Makefile for Docker tests
3 .PHONY: docker docker-test docker-clean docker-image docker-qemu-src
5 DOCKER_SUFFIX := .docker
6 DOCKER_FILES_DIR := $(SRC_PATH)/tests/docker/dockerfiles
7 DOCKER_IMAGES := $(notdir $(basename $(wildcard $(DOCKER_FILES_DIR)/*.docker)))
8 DOCKER_TARGETS := $(patsubst %,docker-image-%,$(DOCKER_IMAGES))
9 # Use a global constant ccache directory to speed up repetitive builds
10 DOCKER_CCACHE_DIR := $$HOME/.cache/qemu-docker-ccache
12 DOCKER_TESTS := $(notdir $(shell \
13         find $(SRC_PATH)/tests/docker/ -name 'test-*' -type f))
15 DOCKER_TOOLS := travis
17 TESTS ?= %
18 IMAGES ?= %
20 CUR_TIME := $(shell date +%Y-%m-%d-%H.%M.%S.$$$$)
21 DOCKER_SRC_COPY := $(BUILD_DIR)/docker-src.$(CUR_TIME)
23 $(DOCKER_SRC_COPY):
24         @mkdir $@
25         $(call quiet-command, cd $(SRC_PATH) && scripts/archive-source.sh $@/qemu.tar, \
26                 "GEN", "$@/qemu.tar")
27         $(call quiet-command, cp $(SRC_PATH)/tests/docker/run $@/run, \
28                 "COPY","RUNNER")
30 docker-qemu-src: $(DOCKER_SRC_COPY)
32 docker-image: ${DOCKER_TARGETS}
34 # General rule for building docker images
35 docker-image-%: $(DOCKER_FILES_DIR)/%.docker
36         @if test "$@" = docker-image-debian-bootstrap -a -z "$(EXECUTABLE)"; then \
37                 echo WARNING: EXECUTABLE is not set, debootstrap may fail. 2>&1 ; \
38         fi
39         $(call quiet-command,\
40                 $(SRC_PATH)/tests/docker/docker.py build qemu:$* $< \
41                 $(if $V,,--quiet) $(if $(NOCACHE),--no-cache) \
42                 $(if $(NOUSER),,--add-current-user) \
43                 $(if $(EXTRA_FILES),--extra-files $(EXTRA_FILES))\
44                 $(if $(EXECUTABLE),--include-executable=$(EXECUTABLE)),\
45                 "BUILD","$*")
47 docker-image-debian-powerpc-cross: EXTRA_FILES:=$(SRC_PATH)/tests/docker/dockerfiles/debian-apt-fake.sh
49 # Enforce dependancies for composite images
50 docker-image-debian: docker-image-debian9
51 docker-image-debian8-mxe: docker-image-debian8
52 docker-image-debian-amd64: docker-image-debian9
53 docker-image-debian-armel-cross: docker-image-debian9
54 docker-image-debian-armhf-cross: docker-image-debian9
55 docker-image-debian-arm64-cross: docker-image-debian9
56 docker-image-debian-mips-cross: docker-image-debian9
57 docker-image-debian-mips64el-cross: docker-image-debian9
58 docker-image-debian-powerpc-cross: docker-image-debian8
59 docker-image-debian-ppc64el-cross: docker-image-debian9
60 docker-image-debian-s390x-cross: docker-image-debian9
61 docker-image-debian-win32-cross: docker-image-debian8-mxe
62 docker-image-debian-win64-cross: docker-image-debian8-mxe
63 docker-image-travis: NOUSER=1
65 # Expand all the pre-requistes for each docker image and test combination
66 $(foreach i,$(DOCKER_IMAGES), \
67         $(foreach t,$(DOCKER_TESTS) $(DOCKER_TOOLS), \
68                 $(eval .PHONY: docker-$t@$i) \
69                 $(eval docker-$t@$i: docker-image-$i docker-run-$t@$i) \
70         ) \
71         $(foreach t,$(DOCKER_TESTS), \
72                 $(eval docker-test: docker-$t@$i) \
73         ) \
76 docker:
77         @echo 'Build QEMU and run tests inside Docker containers'
78         @echo
79         @echo 'Available targets:'
80         @echo
81         @echo '    docker:              Print this help.'
82         @echo '    docker-test:         Run all image/test combinations.'
83         @echo '    docker-clean:        Kill and remove residual docker testing containers.'
84         @echo '    docker-TEST@IMAGE:   Run "TEST" in container "IMAGE".'
85         @echo '                         Note: "TEST" is one of the listed test name,'
86         @echo '                         or a script name under $$QEMU_SRC/tests/docker/;'
87         @echo '                         "IMAGE" is one of the listed container name."'
88         @echo '    docker-image:        Build all images.'
89         @echo '    docker-image-IMAGE:  Build image "IMAGE".'
90         @echo '    docker-run:          For manually running a "TEST" with "IMAGE"'
91         @echo
92         @echo 'Available container images:'
93         @echo '    $(DOCKER_IMAGES)'
94         @echo
95         @echo 'Available tests:'
96         @echo '    $(DOCKER_TESTS)'
97         @echo
98         @echo 'Available tools:'
99         @echo '    $(DOCKER_TOOLS)'
100         @echo
101         @echo 'Special variables:'
102         @echo '    TARGET_LIST=a,b,c    Override target list in builds.'
103         @echo '    EXTRA_CONFIGURE_OPTS="..."'
104         @echo '                         Extra configure options.'
105         @echo '    IMAGES="a b c ..":   Filters which images to build or run.'
106         @echo '    TESTS="x y z .."     Filters which tests to run (for docker-test).'
107         @echo '    J=[0..9]*            Overrides the -jN parameter for make commands'
108         @echo '                         (default is 1)'
109         @echo '    DEBUG=1              Stop and drop to shell in the created container'
110         @echo '                         before running the command.'
111         @echo '    NETWORK=1            Enable virtual network interface with default backend.'
112         @echo '    NETWORK=$$BACKEND     Enable virtual network interface with $$BACKEND.'
113         @echo '    NOUSER               Define to disable adding current user to containers passwd.'
114         @echo '    NOCACHE=1            Ignore cache when build images.'
115         @echo '    EXECUTABLE=<path>    Include executable in image.'
116         @echo '    EXTRA_FILES="<path> [... <path>]"'
117         @echo '                         Include extra files in image.'
119 # This rule if for directly running against an arbitrary docker target.
120 # It is called by the expanded docker targets (e.g. make
121 # docker-test-foo@bar) which will do additional verification.
123 # For example: make docker-run TEST="test-quick" IMAGE="debian:arm64" EXECUTABLE=./aarch64-linux-user/qemu-aarch64
125 docker-run: docker-qemu-src
126         @mkdir -p "$(DOCKER_CCACHE_DIR)"
127         @if test -z "$(IMAGE)" || test -z "$(TEST)"; \
128                 then echo "Invalid target $(IMAGE)/$(TEST)"; exit 1; \
129         fi
130         $(if $(EXECUTABLE),                                             \
131                 $(call quiet-command,                                   \
132                         $(SRC_PATH)/tests/docker/docker.py update       \
133                         $(IMAGE) $(EXECUTABLE),                         \
134                         "  COPYING $(EXECUTABLE) to $(IMAGE)"))
135         $(call quiet-command,                                           \
136                 $(SRC_PATH)/tests/docker/docker.py run                  \
137                         $(if $(NOUSER),,-u $(shell id -u))              \
138                         --security-opt seccomp=unconfined               \
139                         $(if $V,,--rm)                                  \
140                         $(if $(DEBUG),-ti,)                             \
141                         $(if $(NETWORK),$(if $(subst $(NETWORK),,1),--net=$(NETWORK)),--net=none) \
142                         -e TARGET_LIST=$(TARGET_LIST)                   \
143                         -e EXTRA_CONFIGURE_OPTS="$(EXTRA_CONFIGURE_OPTS)" \
144                         -e V=$V -e J=$J -e DEBUG=$(DEBUG)               \
145                         -e SHOW_ENV=$(SHOW_ENV)                         \
146                         $(if $(NOUSER),,                                \
147                                 -e CCACHE_DIR=/var/tmp/ccache           \
148                                 -v $(DOCKER_CCACHE_DIR):/var/tmp/ccache:z \
149                         )                                               \
150                         -v $$(readlink -e $(DOCKER_SRC_COPY)):/var/tmp/qemu:z$(COMMA)ro \
151                         $(IMAGE)                                        \
152                         /var/tmp/qemu/run                               \
153                         $(TEST), "  RUN $(TEST) in ${IMAGE}")
154         $(call quiet-command, rm -r $(DOCKER_SRC_COPY), \
155                 "  CLEANUP $(DOCKER_SRC_COPY)")
157 # Run targets:
159 # Of the form docker-TEST-FOO@IMAGE-BAR which will then be expanded into a call to "make docker-run"
160 docker-run-%: CMD = $(shell echo '$@' | sed -e 's/docker-run-\([^@]*\)@\(.*\)/\1/')
161 docker-run-%: IMAGE = $(shell echo '$@' | sed -e 's/docker-run-\([^@]*\)@\(.*\)/\2/')
162 docker-run-%:
163         @$(MAKE) docker-run TEST=$(CMD) IMAGE=qemu:$(IMAGE)
165 docker-clean:
166         $(call quiet-command, $(SRC_PATH)/tests/docker/docker.py clean)