Home
last modified time | relevance | path

Searched +full:docker +full:- +full:test +full:- +full:debug (Results 1 – 5 of 5) sorted by relevance

/qemu/tests/docker/
H A DMakefile.include1 # Makefile for Docker tests
3 .PHONY: docker docker-help docker-test docker-clean docker-image docker-qemu-src
9 HOST_ARCH = $(shell uname -m)
10 USER = $(if $(NOUSER),,$(shell id -un))
11 UID = $(if $(NOUSER),,$(shell id -u))
13 DOCKER_FILES_DIR := $(SRC_PATH)/tests/docker/dockerfiles
15 DOCKER_DEFAULT_REGISTRY := registry.gitlab.com/qemu-project/qemu
19 RUNC ?= $(if $(shell command -v docker), docker, podman)
20 DOCKER_SCRIPT=$(SRC_PATH)/tests/docker/docker.py --engine $(RUNC)
22 CUR_TIME := $(shell date +%Y-%m-%d-%H.%M.%S.$$$$)
[all …]
H A Drun3 # Docker test runner
12 # the top-level directory.
14 if test -n "$V"; then
15 set -x
23 if test -n "$J"; then
24 export MAKEFLAGS="$MAKEFLAGS -j$J"
28 export TEST_DIR=/tmp/qemu-test
29 mkdir -p $TEST_DIR/{src,build,install}
32 tar -C $TEST_DIR/src -xf $BASE/qemu.tar || { echo "Failed to untar source"; exit 2; }
34 if test -n "$SHOW_ENV"; then
[all …]
/qemu/docs/devel/testing/
H A Dmain.rst7 everything from unit testing and exercising specific sub-systems all
9 tests you can run ``make check-help`` from either the source or build
12 Most (but not all) tests are also integrated as an automated test into
16 [./pyvenv/bin/]meson test --suite qemu:softfloat
20 An automated test is written with one of the test frameworks using its
21 generic test functions/classes. The test framework can run the tests and
24 An automated test has essentially three parts:
26 1. The test initialization of the parameters, where the expected parameters,
31 matches the expected result, the test has been successful; otherwise, it has
34 The rest of this document will cover the details for specific test
[all …]
/qemu/
H A D.patchew.yml1 ---
37 Test '{{ test }}' timeout, log:
57 Tester {{ tester }} out of space when running {{ test }}
84 {% if test == "checkpatch" %}
91 {% elif test == "docker-mingw@fedora" or test == "docker-quick@centos8" or test == "asan" %}
94 This series failed the {{ test }} build test. Please find the testing commands and
95 their output below. If you have Docker installed, you can probably reproduce it
98 … {% lines_between logtext start="^=== TEST SCRIPT BEGIN ===$" stop="^=== TEST SCRIPT END ===$" %}
101 {% elif test == "s390x" or test == "FreeBSD" or test == "ppcle" or test == "ppcbe" %}
104 This series failed build test on {{test}} host. Please find the details below.
[all …]
H A Dconfigure14 source_path=$(cd "$(dirname -- "$0")"; pwd)
16 if test "$PWD" -ef "$source_path"
20 MARKER=build/auto-created-by-configure
22 if test -e build
24 if test -f $MARKER
26 rm -rf build
36 echo "your source directory, or try doing an out-of-tree build."
41 # This file is auto-generated by configure to support in-source tree
46 @$(MAKE) -C build -f Makefile $(MAKECMDGOALS)
47 @if test "$(MAKECMDGOALS)" = "distclean" && \
[all …]