[Qemu-devel] [PULL v2 00/22 for 4.1] testing updates

Alex Bennée posted 22 patches 4 years, 9 months ago
Only 0 patches received!
There is a newer version of this series
.shippable.yml                                     |   9 +-
.travis.yml                                        |   2 +-
Makefile                                           |   3 +-
hw/i386/Kconfig                                    |   4 +-
qemu.nsi                                           |  11 ++
scripts/archive-source.sh                          |  18 ++--
tests/docker/Makefile.include                      |   6 +-
tests/docker/dockerfiles/debian-win32-cross.docker |  10 +-
tests/docker/dockerfiles/debian-win64-cross.docker |  10 +-
tests/docker/dockerfiles/debian10.docker           |   1 +
.../{debian8-mxe.docker => debian9-mxe.docker}     |  11 +-
tests/docker/dockerfiles/debian9.docker            |   1 +
tests/docker/dockerfiles/fedora.docker             |   4 +
tests/docker/dockerfiles/ubuntu.docker             |   3 +-
tests/docker/dockerfiles/ubuntu1804.docker         |   3 +-
tests/docker/run                                   |   4 +-
tests/docker/test-mingw                            |   4 +-
tests/docker/test-misc                             |  22 ++++
tests/migration-test.c                             |  19 ++--
tests/qemu-iotests/007                             |   2 +-
tests/qemu-iotests/011                             |   2 +-
tests/qemu-iotests/032                             |   2 +-
tests/qemu-iotests/035                             |   2 +-
tests/qemu-iotests/037                             |   2 +-
tests/qemu-iotests/046                             |   2 +-
tests/qemu-iotests/check                           |   4 +-
tests/qemu-iotests/common.pattern                  |   4 +-
tests/qemu-iotests/group                           | 120 +++++++++++----------
28 files changed, 176 insertions(+), 109 deletions(-)
rename tests/docker/dockerfiles/{debian8-mxe.docker => debian9-mxe.docker} (56%)
create mode 100755 tests/docker/test-misc
[Qemu-devel] [PULL v2 00/22 for 4.1] testing updates
Posted by Alex Bennée 4 years, 9 months ago
The following changes since commit 23da9e297b4120ca9702cabec91599a44255fe96:

  Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20190722' into staging (2019-07-22 15:16:48 +0100)

are available in the Git repository at:

  https://github.com/stsquad/qemu.git tags/pull-testing-230719-2

for you to fetch changes up to e2e767784eec076bc57a1516967661d11e76aee8:

  tests/qemu-iotests: Don't use 'seq' in the iotests (2019-07-23 14:22:02 +0100)

----------------------------------------------------------------
Final testing updates:

  - docker sphinx updates
  - windows build re-enabled in CI
  - travis_retry for make check
  - build fixes

----------------------------------------------------------------
Alex Bennée (7):
      tests/docker: add test-misc for building tools & docs
      tests/migration-test: don't spam the logs when we fail
      tests/dockerfiles: update the win cross builds to stretch
      shippable: re-enable the windows cross builds
      hw/i386: also turn off VMMOUSE is VMPORT is disabled
      travis: enable travis_retry for check phase
      tests/docker: invoke the DEBUG shell with --noprofile/--norc

Marc-André Lureau (1):
      archive-source: also create a stash for submodules

Philippe Mathieu-Daudé (11):
      tests/docker: Install Sphinx in the Ubuntu images
      tests/docker: Install Sphinx in the Fedora image
      tests/docker: Install Ubuntu images noninteractively
      tests/docker: Install Sphinx in the Debian images
      tests/docker: Install the NSIS tools in the MinGW capable images
      tests/docker: Set the correct cross-PKG_CONFIG_PATH in the MXE images
      tests/docker: Install texinfo in the Fedora image
      buildsys: The NSIS Windows build requires the documentation installed
      buildsys: The NSIS Windows build requires qemu-nsis.bmp installed
      tests/docker: Let the test-mingw test generate a NSIS installer
      NSIS: Add missing firmware blobs

Thomas Huth (3):
      tests/qemu-iotests/check: Allow tests without groups
      tests/qemu-iotests/group: Remove some more tests from the "auto" group
      tests/qemu-iotests: Don't use 'seq' in the iotests

 .shippable.yml                                     |   9 +-
 .travis.yml                                        |   2 +-
 Makefile                                           |   3 +-
 hw/i386/Kconfig                                    |   4 +-
 qemu.nsi                                           |  11 ++
 scripts/archive-source.sh                          |  18 ++--
 tests/docker/Makefile.include                      |   6 +-
 tests/docker/dockerfiles/debian-win32-cross.docker |  10 +-
 tests/docker/dockerfiles/debian-win64-cross.docker |  10 +-
 tests/docker/dockerfiles/debian10.docker           |   1 +
 .../{debian8-mxe.docker => debian9-mxe.docker}     |  11 +-
 tests/docker/dockerfiles/debian9.docker            |   1 +
 tests/docker/dockerfiles/fedora.docker             |   4 +
 tests/docker/dockerfiles/ubuntu.docker             |   3 +-
 tests/docker/dockerfiles/ubuntu1804.docker         |   3 +-
 tests/docker/run                                   |   4 +-
 tests/docker/test-mingw                            |   4 +-
 tests/docker/test-misc                             |  22 ++++
 tests/migration-test.c                             |  19 ++--
 tests/qemu-iotests/007                             |   2 +-
 tests/qemu-iotests/011                             |   2 +-
 tests/qemu-iotests/032                             |   2 +-
 tests/qemu-iotests/035                             |   2 +-
 tests/qemu-iotests/037                             |   2 +-
 tests/qemu-iotests/046                             |   2 +-
 tests/qemu-iotests/check                           |   4 +-
 tests/qemu-iotests/common.pattern                  |   4 +-
 tests/qemu-iotests/group                           | 120 +++++++++++----------
 28 files changed, 176 insertions(+), 109 deletions(-)
 rename tests/docker/dockerfiles/{debian8-mxe.docker => debian9-mxe.docker} (56%)
 create mode 100755 tests/docker/test-misc


-- 
2.20.1


Re: [Qemu-devel] [PULL v2 00/22 for 4.1] testing updates
Posted by Peter Maydell 4 years, 9 months ago
On Tue, 23 Jul 2019 at 14:31, Alex Bennée <alex.bennee@linaro.org> wrote:
>
> The following changes since commit 23da9e297b4120ca9702cabec91599a44255fe96:
>
>   Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20190722' into staging (2019-07-22 15:16:48 +0100)
>
> are available in the Git repository at:
>
>   https://github.com/stsquad/qemu.git tags/pull-testing-230719-2
>
> for you to fetch changes up to e2e767784eec076bc57a1516967661d11e76aee8:
>
>   tests/qemu-iotests: Don't use 'seq' in the iotests (2019-07-23 14:22:02 +0100)
>
> ----------------------------------------------------------------
> Final testing updates:
>
>   - docker sphinx updates
>   - windows build re-enabled in CI
>   - travis_retry for make check
>   - build fixes

This has fixed the openbsd issue, but make check-tcg still fails.

thanks
-- PMM