Only fedora22 has the required toolchain so it's not run elsewhere. Signed-off-by: Fam Zheng <f...@redhat.com> --- tests/docker/mingw.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 tests/docker/mingw.sh
diff --git a/tests/docker/mingw.sh b/tests/docker/mingw.sh new file mode 100755 index 0000000..0f103cd --- /dev/null +++ b/tests/docker/mingw.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +if [ "$IMAGE_TAG" != "fedora22" ]; then + echo "Mingw test skipped" + exit 0 +fi + +cd $(mktemp -d) +for prefix in x86_64-w64-mingw32- i686-w64-mingw32-; do + $QEMU_SRC/configuire --cross-prefix=$prefix \ + --target-list=x86_64-softmmu,aarch64-softmmu + make $MAKEFLAGS +done + -- 2.4.3