qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Philippe Mathieu-Daudé" <f4bug@amsat.org>
To: qemu-devel@nongnu.org
Cc: "Willian Rampazzo" <willianr@redhat.com>,
	"Philippe Mathieu-Daudé" <f4bug@amsat.org>,
	"Wainer dos Santos Moschetta" <wainersm@redhat.com>,
	"Cleber Rosa" <crosa@redhat.com>
Subject: [PATCH v6 0/6] tests/acceptance: Add bFLT loader linux-user test
Date: Fri,  5 Nov 2021 15:34:10 +0100	[thread overview]
Message-ID: <20211105143416.148332-1-f4bug@amsat.org> (raw)

Since v5:
- rebased on Willian's "rename tests acceptance to tests avocado" [*]

Since v4:
- rebased
- addressed Willian review comments

Since v3:
- rebased
- addressed Wainer review comments from v2
- rename avocado_qemu.Test -> QemuSystemTest

Since v2:
- rebased tests/acceptance/avocado_qemu/__init__.py patches
- extract has_cmd() from virtiofs_submounts.py
- check cpio availability with has_cmd()

[*] https://lore.kernel.org/qemu-devel/20211103211404.79953-2-willianr@redhat.com/
Based-on: <20211103211404.79953-2-willianr@redhat.com>

Philippe Mathieu-Daudé (6):
  tests/acceptance: Extract QemuBaseTest from Test
  tests/acceptance: Make pick_default_qemu_bin() more generic
  tests/acceptance: Introduce QemuUserTest base class
  tests/acceptance: Share useful helpers from virtiofs_submounts test
  tests/acceptance: Add bFLT loader linux-user test
  tests/acceptance: Rename avocado_qemu.Test -> QemuSystemTest

 docs/devel/testing.rst                    |   8 +-
 tests/avocado/avocado_qemu/__init__.py    | 161 ++++++++++++++++------
 tests/avocado/boot_linux_console.py       |   4 +-
 tests/avocado/cpu_queries.py              |   4 +-
 tests/avocado/empty_cpu_model.py          |   4 +-
 tests/avocado/info_usernet.py             |   4 +-
 tests/avocado/linux_initrd.py             |   4 +-
 tests/avocado/linux_ssh_mips_malta.py     |   5 +-
 tests/avocado/load_bflt.py                |  54 ++++++++
 tests/avocado/machine_arm_canona1100.py   |   4 +-
 tests/avocado/machine_arm_integratorcp.py |   4 +-
 tests/avocado/machine_arm_n8x0.py         |   4 +-
 tests/avocado/machine_avr6.py             |   4 +-
 tests/avocado/machine_m68k_nextcube.py    |   4 +-
 tests/avocado/machine_microblaze.py       |   4 +-
 tests/avocado/machine_mips_fuloong2e.py   |   4 +-
 tests/avocado/machine_mips_loongson3v.py  |   4 +-
 tests/avocado/machine_mips_malta.py       |   4 +-
 tests/avocado/machine_rx_gdbsim.py        |   4 +-
 tests/avocado/machine_s390_ccw_virtio.py  |   4 +-
 tests/avocado/machine_sparc_leon3.py      |   4 +-
 tests/avocado/migration.py                |   4 +-
 tests/avocado/multiprocess.py             |   4 +-
 tests/avocado/pc_cpu_hotplug_props.py     |   4 +-
 tests/avocado/ppc_405.py                  |   4 +-
 tests/avocado/ppc_bamboo.py               |   4 +-
 tests/avocado/ppc_mpc8544ds.py            |   4 +-
 tests/avocado/ppc_prep_40p.py             |   4 +-
 tests/avocado/ppc_pseries.py              |   4 +-
 tests/avocado/ppc_virtex_ml507.py         |   4 +-
 tests/avocado/version.py                  |   4 +-
 tests/avocado/virtio-gpu.py               |   4 +-
 tests/avocado/virtio_check_params.py      |   4 +-
 tests/avocado/virtio_version.py           |   4 +-
 tests/avocado/virtiofs_submounts.py       |  59 +-------
 tests/avocado/vnc.py                      |   4 +-
 tests/avocado/x86_cpu_model_versions.py   |   4 +-
 37 files changed, 248 insertions(+), 167 deletions(-)
 create mode 100644 tests/avocado/load_bflt.py

-- 
2.31.1



             reply	other threads:[~2021-11-05 14:36 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-05 14:34 Philippe Mathieu-Daudé [this message]
2021-11-05 14:34 ` [PATCH v6 1/6] tests/acceptance: Extract QemuBaseTest from Test Philippe Mathieu-Daudé
2021-11-05 14:34 ` [PATCH v6 2/6] tests/acceptance: Make pick_default_qemu_bin() more generic Philippe Mathieu-Daudé
2021-11-05 14:34 ` [PATCH v6 3/6] tests/acceptance: Introduce QemuUserTest base class Philippe Mathieu-Daudé
2021-11-05 14:34 ` [PATCH v6 4/6] tests/acceptance: Share useful helpers from virtiofs_submounts test Philippe Mathieu-Daudé
2021-11-05 14:34 ` [PATCH v6 5/6] tests/acceptance: Add bFLT loader linux-user test Philippe Mathieu-Daudé
2021-11-05 14:34 ` [PATCH v6 6/6] tests/acceptance: Rename avocado_qemu.Test -> QemuSystemTest Philippe Mathieu-Daudé
2021-11-08  8:00 ` [PATCH v6 0/6] tests/acceptance: Add bFLT loader linux-user test Philippe Mathieu-Daudé

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20211105143416.148332-1-f4bug@amsat.org \
    --to=f4bug@amsat.org \
    --cc=crosa@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=wainersm@redhat.com \
    --cc=willianr@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).