From 9ae228c850007342adad1516a46c845cb4a96a0f Mon Sep 17 00:00:00 2001 From: Pierrick Bouvier Date: Tue, 3 Dec 2024 15:45:17 -0800 Subject: [PATCH] ci: verbose tests Signed-off-by: Pierrick Bouvier --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0fea4a32c559a..39ba10211af77 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -272,7 +272,7 @@ jobs: - run: > podman run --init --privileged --rm -it -v $(pwd):$(pwd) -w $(pwd) docker.io/pbolinaro/qemu-ci:debian-all-test-cross - bash -cx "env ASAN_OPTIONS=detect_leaks=0 make -k check-tcg" + bash -cx "env ASAN_OPTIONS=detect_leaks=0 make -k check-tcg V=1" # run all meson tests, including functional. Run -j1 to avoid sporadic issues. # block tests are not ran because they don't support sanitizers: @@ -291,7 +291,7 @@ jobs: - run: > podman run --init --privileged --rm -it -v /dev/kvm:/dev/kvm -v $(pwd):$(pwd) -w $(pwd) docker.io/pbolinaro/qemu-ci:debian-precache-tests - bash -cx "env ASAN_OPTIONS=detect_leaks=0 make -k check SPEED=thorough TIMEOUT_MULTIPLIER=5" + bash -cx "env ASAN_OPTIONS=detect_leaks=0 make -k check SPEED=thorough TIMEOUT_MULTIPLIER=5 V=1" # iotests do not support sanitizers, so we run them in their own job check-block: @@ -308,7 +308,7 @@ jobs: - run: > podman run --init --privileged --rm -it -v /dev/kvm:/dev/kvm -v $(pwd):$(pwd) -w $(pwd) docker.io/pbolinaro/qemu-ci:debian-precache-tests - bash -cx "meson test -C build --suite block --suite block-slow --suite block-thorough -j 1 --timeout-multiplier 5" + bash -cx "meson test -C build --suite block --suite block-slow --suite block-thorough -j 1 --timeout-multiplier 5 --verbose" check-avocado: needs: checkapply @@ -326,4 +326,4 @@ jobs: - run: > podman run --init --privileged --rm -it -v /dev/kvm:/dev/kvm -v $(pwd):$(pwd) -w $(pwd) docker.io/pbolinaro/qemu-ci:debian-precache-tests - bash -cx "env ASAN_OPTIONS=detect_leaks=0 make -k check-avocado" + bash -cx "env ASAN_OPTIONS=detect_leaks=0 make -k check-avocado V=1"