[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v4 02/30] tests/docker: update test-mingw to run single build
From: |
Alex Bennée |
Subject: |
[PATCH v4 02/30] tests/docker: update test-mingw to run single build |
Date: |
Thu, 27 Oct 2022 19:36:08 +0100 |
While the test-build test happily run for mingw the test-mingw case
runs more of the packaging inline with what our CI does. It however
fails if we don't find both compilers and expects to be run on a
docker image with both.
Remove that distinction and make it work more like the other build
test scripts.
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
---
tests/docker/test-mingw | 16 ++++++----------
1 file changed, 6 insertions(+), 10 deletions(-)
diff --git a/tests/docker/test-mingw b/tests/docker/test-mingw
index 0bc6d78872..18366972eb 100755
--- a/tests/docker/test-mingw
+++ b/tests/docker/test-mingw
@@ -13,14 +13,12 @@
. common.rc
-requires_binary x86_64-w64-mingw32-gcc
-requires_binary i686-w64-mingw32-gcc
+requires_binary x86_64-w64-mingw32-gcc i686-w64-mingw32-gcc
cd "$BUILD_DIR"
-for prefix in x86_64-w64-mingw32- i686-w64-mingw32-; do
- TARGET_LIST=${TARGET_LIST:-$DEF_TARGET_LIST} \
- build_qemu --cross-prefix=$prefix \
+TARGET_LIST=${TARGET_LIST:-$DEF_TARGET_LIST} \
+build_qemu \
--enable-trace-backends=simple \
--enable-gnutls \
--enable-nettle \
@@ -29,8 +27,6 @@ for prefix in x86_64-w64-mingw32- i686-w64-mingw32-; do
--enable-bzip2 \
--enable-guest-agent \
--enable-docs
- install_qemu
- make installer
- make clean
-
-done
+install_qemu
+make installer
+make clean
--
2.34.1
- [PATCH v4 00/30] testing/next pre-PR, Alex Bennée, 2022/10/27
- [PATCH v4 07/30] tests/docker: Add flex/bison to `debian-hexagon-cross`, Alex Bennée, 2022/10/27
- [PATCH v4 04/30] configure: don't enable cross compilers unless in target_list, Alex Bennée, 2022/10/27
- [PATCH v4 03/30] tests/docker: Add flex/bison to `debian-all-test`, Alex Bennée, 2022/10/27
- [PATCH v4 09/30] tests/tcg/nios2: Tweak 10m50-ghrd.ld, Alex Bennée, 2022/10/27
- [PATCH v4 10/30] semihosting/arm-compat-semi: Avoid using hardcoded /tmp, Alex Bennée, 2022/10/27
- [PATCH v4 08/30] tests/tcg: use regular semihosting for nios2-softmmu, Alex Bennée, 2022/10/27
- [PATCH v4 01/30] tests/docker: update fedora-win[32|64]-cross with lcitool, Alex Bennée, 2022/10/27
- [PATCH v4 02/30] tests/docker: update test-mingw to run single build,
Alex Bennée <=
- [PATCH v4 14/30] hw/usb: dev-mtp: Use g_mkdir(), Alex Bennée, 2022/10/27
- [PATCH v4 12/30] util/qemu-sockets: Use g_get_tmp_dir() to get the directory for temporary files, Alex Bennée, 2022/10/27
- [PATCH v4 05/30] configure: fix the --enable-static --disable-pie case, Alex Bennée, 2022/10/27
- [PATCH v4 11/30] tcg: Avoid using hardcoded /tmp, Alex Bennée, 2022/10/27
- [PATCH v4 21/30] tests/tcg: re-enable linux-test for sh4, Alex Bennée, 2022/10/27
- [PATCH v4 06/30] tests/avocado: extend the timeout for x86_64 tcg tests, Alex Bennée, 2022/10/27
- [PATCH v4 13/30] block/vvfat: Unify the mkdir() call, Alex Bennée, 2022/10/27
- [PATCH v4 22/30] tests/tcg: re-enable threadcount for sh4, Alex Bennée, 2022/10/27
- [PATCH v4 26/30] tests/tcg: include CONFIG_PLUGIN in config-host.mak, Alex Bennée, 2022/10/27
- [PATCH v4 16/30] MAINTAINERS: add features_to_c.sh to gdbstub files, Alex Bennée, 2022/10/27