mbox

[PULL,v2,00/22] Integration testing patches for 2021-09-27

Message ID 20210927172626.2026308-1-philmd@redhat.com
State New
Headers show

Pull-request

https://github.com/philmd/qemu.git tags/integration-testing-20210927

Message

Philippe Mathieu-Daudé Sept. 27, 2021, 5:26 p.m. UTC
The following changes since commit de8ed1055c2ce18c95f597eb10df360dcb534f99:

  Merge remote-tracking branch 'remotes/armbru/tags/pull-qapi-2021-09-25-v2' into staging (2021-09-27 15:03:42 +0100)

are available in the Git repository at:

  https://github.com/philmd/qemu.git tags/integration-testing-20210927

for you to fetch changes up to 4c5fc0c5fc496c147adb15536e4ac808feccf2cf:

  tests/acceptance: Test powernv machines (2021-09-27 19:21:37 +0200)

----------------------------------------------------------------
Integration testing patches

- More Linux kernel record/replay tests (Pavel Dovgalyuk)
- Various fixes (Willian Rampazzo, Cleber Rosa)
- Split machine_ppc.py per machine (David Gibson)
- Add AVOCADO_TESTS command line environment variable (Willian Rampazzo)
- Test PowerPC PowerNV 8/9 machines (Cédric Le Goater)

v2:
- Added missing test from Cédric.
----------------------------------------------------------------

Cleber Rosa (6):
  Acceptance Tests: add standard clean up at test tearDown()
  Acceptance Tests: improve check-acceptance description
  acceptance/tests/vnc.py: use explicit syntax for enabling passwords
  tests/acceptance/boot_xen.py: removed unused import
  tests/acceptance/ppc_prep_40p.py: NetBSD 7.1.2 location update
  tests/acceptance/ppc_prep_40p.py: clean up unused import

Cédric Le Goater (1):
  tests/acceptance: Test powernv machines

David Gibson (1):
  qemu: Split machine_ppc.py acceptance tests

Pavel Dovgalyuk (5):
  tests/acceptance: add replay kernel test for s390x
  tests/acceptance: add replay kernel test for openrisc
  tests/acceptance: add replay kernel test for nios2
  tests/acceptance: add replay kernel test for alpha
  tests/acceptance: Linux boot test for record/replay

Willian Rampazzo (9):
  Acceptance tests: add myself as a reviewer for the acceptance tests
  avocado_qemu: standardize super() call following PEP3135
  avocado_qemu: fix import module based on isort
  avocado_qemu: tweak ssh connect method
  avocado_qemu: explicitly return None to avoid R1710
  avocado_qemu: fix inheritance order on LinuxTest class
  tests/Makefile: allow control over tags during check-acceptance
  docs/devel/testing: add instruction to run a single acceptance test
  tests/Makefile: add AVOCADO_TESTS option to make check-acceptance

 docs/devel/testing.rst                    |  69 +++++++++++++
 MAINTAINERS                               |   6 +-
 tests/Makefile.include                    |  19 +++-
 tests/acceptance/avocado_qemu/__init__.py |  30 +++---
 tests/acceptance/boot_linux_console.py    |  35 +++++++
 tests/acceptance/boot_xen.py              |   1 -
 tests/acceptance/machine_ppc.py           |  69 -------------
 tests/acceptance/ppc_mpc8544ds.py         |  32 ++++++
 tests/acceptance/ppc_prep_40p.py          |   5 +-
 tests/acceptance/ppc_pseries.py           |  35 +++++++
 tests/acceptance/ppc_virtex_ml507.py      |  34 +++++++
 tests/acceptance/replay_kernel.py         |  54 ++++++++++
 tests/acceptance/replay_linux.py          | 116 ++++++++++++++++++++++
 tests/acceptance/vnc.py                   |   2 +-
 14 files changed, 409 insertions(+), 98 deletions(-)
 delete mode 100644 tests/acceptance/machine_ppc.py
 create mode 100644 tests/acceptance/ppc_mpc8544ds.py
 create mode 100644 tests/acceptance/ppc_pseries.py
 create mode 100644 tests/acceptance/ppc_virtex_ml507.py
 create mode 100644 tests/acceptance/replay_linux.py

Comments

Peter Maydell Sept. 28, 2021, 12:06 p.m. UTC | #1
On Mon, 27 Sept 2021 at 18:43, Philippe Mathieu-Daudé <philmd@redhat.com> wrote:
>
> The following changes since commit de8ed1055c2ce18c95f597eb10df360dcb534f99:
>
>   Merge remote-tracking branch 'remotes/armbru/tags/pull-qapi-2021-09-25-v2' into staging (2021-09-27 15:03:42 +0100)
>
> are available in the Git repository at:
>
>   https://github.com/philmd/qemu.git tags/integration-testing-20210927
>
> for you to fetch changes up to 4c5fc0c5fc496c147adb15536e4ac808feccf2cf:
>
>   tests/acceptance: Test powernv machines (2021-09-27 19:21:37 +0200)
>
> ----------------------------------------------------------------
> Integration testing patches
>
> - More Linux kernel record/replay tests (Pavel Dovgalyuk)
> - Various fixes (Willian Rampazzo, Cleber Rosa)
> - Split machine_ppc.py per machine (David Gibson)
> - Add AVOCADO_TESTS command line environment variable (Willian Rampazzo)
> - Test PowerPC PowerNV 8/9 machines (Cédric Le Goater)
>
> v2:
> - Added missing test from Cédric.


Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/6.2
for any user-visible changes.

-- PMM