[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 2/8] tests/docker: cleanup non-verbose output
From: |
Alex Bennée |
Subject: |
[PATCH 2/8] tests/docker: cleanup non-verbose output |
Date: |
Thu, 10 Aug 2023 16:36:34 +0100 |
Even with --quiet docker will spam the sha256 to the console. Avoid
this by redirecting stdout. While we are at it fix the name we echo
which was broken during 0b1a649047 (tests/docker: use direct RUNC call
to build containers).
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
---
tests/docker/Makefile.include | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/tests/docker/Makefile.include b/tests/docker/Makefile.include
index 142e8605ee..dfabafab92 100644
--- a/tests/docker/Makefile.include
+++ b/tests/docker/Makefile.include
@@ -46,9 +46,9 @@ docker-image-%: $(DOCKER_FILES_DIR)/%.docker
--build-arg BUILDKIT_INLINE_CACHE=1 \
$(if $(NOUSER),, \
--build-arg USER=$(USER) \
- --build-arg UID=$(UID)) \
- -t qemu/$* - < $<, \
- "BUILD", $1)
+ --build-arg UID=$(UID)) \
+ -t qemu/$* - < $< $(if $V,,> /dev/null),\
+ "BUILD", $*)
# Special rule for debootstraped binfmt linux-user images
docker-binfmt-image-debian-%: $(DOCKER_FILES_DIR)/debian-bootstrap.docker
--
2.39.2
- [PATCH 0/8] some testing and gdbstub fixes, Alex Bennée, 2023/08/10
- [PATCH 1/8] gitlab: enable ccache for many build jobs, Alex Bennée, 2023/08/10
- [PATCH 2/8] tests/docker: cleanup non-verbose output,
Alex Bennée <=
- [PATCH 3/8] tests/tcg: remove quoting for info output, Alex Bennée, 2023/08/10
- [PATCH 4/8] tests: remove test-gdbstub.py, Alex Bennée, 2023/08/10
- [PATCH 5/8] tests/tcg: clean-up gdb confirm/pagination settings, Alex Bennée, 2023/08/10
- [PATCH 8/8] gdbstub: don't complain about preemptive ACK chars, Alex Bennée, 2023/08/10
- [PATCH 6/8] tests/tcg: ensure system-mode gdb tests start stopped, Alex Bennée, 2023/08/10