mbox series

[0/1] tests/acceptance: rename tests acceptance to tests avocado

Message ID 20211103211404.79953-1-willianr@redhat.com
Headers show
Series tests/acceptance: rename tests acceptance to tests avocado | expand

Message

Willian Rampazzo Nov. 3, 2021, 9:14 p.m. UTC
In the discussion about renaming the `tests/acceptance` [1], the
conclusion was that the folders inside `tests` are related to the
framework running the tests and not directly related to the type of
the tests.

This changes the folder to `tests/avocado` and adjusts the MAKEFILE, the
CI related files and the documentation.

[1] https://lists.gnu.org/archive/html/qemu-devel/2021-05/msg06553.html

GitLab pipeline with new naming: https://gitlab.com/willianrampazzo/qemu/-/pipelines/401431592
Signed-off-by: Willian Rampazzo <willianr@redhat.com>

Willian Rampazzo (1):
  tests/acceptance: rename tests acceptance to tests avocado

 .gitlab-ci.d/buildtest-template.yml           |  2 +-
 .gitlab-ci.d/buildtest.yml                    | 56 +++++++++----------
 MAINTAINERS                                   | 52 ++++++++---------
 configure                                     |  2 +-
 docs/devel/build-system.rst                   |  2 +-
 docs/devel/ci-definitions.rst.inc             |  2 +-
 docs/devel/testing.rst                        | 49 ++++++++--------
 docs/system/arm/orangepi.rst                  |  8 +--
 python/qemu/machine/README.rst                |  2 +-
 python/qemu/qmp/README.rst                    |  2 +-
 python/qemu/utils/README.rst                  |  2 +-
 tests/Makefile.include                        | 14 ++---
 tests/acceptance/README.rst                   | 10 ----
 tests/avocado/README.rst                      | 10 ++++
 .../avocado_qemu/__init__.py                  |  2 +-
 tests/{acceptance => avocado}/boot_linux.py   |  0
 .../boot_linux_console.py                     |  0
 tests/{acceptance => avocado}/boot_xen.py     |  0
 tests/{acceptance => avocado}/cpu_queries.py  |  0
 .../empty_cpu_model.py                        |  0
 tests/{acceptance => avocado}/hotplug_cpu.py  |  0
 tests/{acceptance => avocado}/info_usernet.py |  0
 tests/{acceptance => avocado}/intel_iommu.py  |  0
 tests/{acceptance => avocado}/linux_initrd.py |  2 +-
 .../linux_ssh_mips_malta.py                   |  0
 .../machine_arm_canona1100.py                 |  0
 .../machine_arm_integratorcp.py               |  0
 .../machine_arm_n8x0.py                       |  0
 tests/{acceptance => avocado}/machine_avr6.py |  2 +-
 .../machine_m68k_nextcube.py                  |  0
 .../machine_microblaze.py                     |  0
 .../machine_mips_fuloong2e.py                 |  0
 .../machine_mips_loongson3v.py                |  0
 .../machine_mips_malta.py                     |  0
 .../machine_rx_gdbsim.py                      |  0
 .../machine_s390_ccw_virtio.py                |  0
 .../machine_sparc64_sun4u.py                  |  0
 .../machine_sparc_leon3.py                    |  0
 tests/{acceptance => avocado}/migration.py    |  0
 tests/{acceptance => avocado}/multiprocess.py |  0
 .../pc_cpu_hotplug_props.py                   |  0
 tests/{acceptance => avocado}/ppc_405.py      |  0
 tests/{acceptance => avocado}/ppc_bamboo.py   |  0
 .../{acceptance => avocado}/ppc_mpc8544ds.py  |  0
 tests/{acceptance => avocado}/ppc_prep_40p.py | 12 ++--
 tests/{acceptance => avocado}/ppc_pseries.py  |  0
 .../ppc_virtex_ml507.py                       |  0
 .../{acceptance => avocado}/replay_kernel.py  |  0
 tests/{acceptance => avocado}/replay_linux.py |  0
 .../reverse_debugging.py                      |  0
 tests/{acceptance => avocado}/smmu.py         |  0
 tests/{acceptance => avocado}/tcg_plugins.py  |  0
 .../tesseract_utils.py                        |  0
 tests/{acceptance => avocado}/version.py      |  0
 tests/{acceptance => avocado}/virtio-gpu.py   |  0
 .../virtio_check_params.py                    |  0
 .../{acceptance => avocado}/virtio_version.py |  0
 .../virtiofs_submounts.py                     |  0
 .../virtiofs_submounts.py.data/cleanup.sh     |  0
 .../guest-cleanup.sh                          |  0
 .../virtiofs_submounts.py.data/guest.sh       |  0
 .../virtiofs_submounts.py.data/host.sh        |  0
 tests/{acceptance => avocado}/vnc.py          |  0
 .../x86_cpu_model_versions.py                 |  0
 64 files changed, 113 insertions(+), 118 deletions(-)
 delete mode 100644 tests/acceptance/README.rst
 create mode 100644 tests/avocado/README.rst
 rename tests/{acceptance => avocado}/avocado_qemu/__init__.py (99%)
 rename tests/{acceptance => avocado}/boot_linux.py (100%)
 rename tests/{acceptance => avocado}/boot_linux_console.py (100%)
 rename tests/{acceptance => avocado}/boot_xen.py (100%)
 rename tests/{acceptance => avocado}/cpu_queries.py (100%)
 rename tests/{acceptance => avocado}/empty_cpu_model.py (100%)
 rename tests/{acceptance => avocado}/hotplug_cpu.py (100%)
 rename tests/{acceptance => avocado}/info_usernet.py (100%)
 rename tests/{acceptance => avocado}/intel_iommu.py (100%)
 rename tests/{acceptance => avocado}/linux_initrd.py (99%)
 rename tests/{acceptance => avocado}/linux_ssh_mips_malta.py (100%)
 rename tests/{acceptance => avocado}/machine_arm_canona1100.py (100%)
 rename tests/{acceptance => avocado}/machine_arm_integratorcp.py (100%)
 rename tests/{acceptance => avocado}/machine_arm_n8x0.py (100%)
 rename tests/{acceptance => avocado}/machine_avr6.py (98%)
 rename tests/{acceptance => avocado}/machine_m68k_nextcube.py (100%)
 rename tests/{acceptance => avocado}/machine_microblaze.py (100%)
 rename tests/{acceptance => avocado}/machine_mips_fuloong2e.py (100%)
 rename tests/{acceptance => avocado}/machine_mips_loongson3v.py (100%)
 rename tests/{acceptance => avocado}/machine_mips_malta.py (100%)
 rename tests/{acceptance => avocado}/machine_rx_gdbsim.py (100%)
 rename tests/{acceptance => avocado}/machine_s390_ccw_virtio.py (100%)
 rename tests/{acceptance => avocado}/machine_sparc64_sun4u.py (100%)
 rename tests/{acceptance => avocado}/machine_sparc_leon3.py (100%)
 rename tests/{acceptance => avocado}/migration.py (100%)
 rename tests/{acceptance => avocado}/multiprocess.py (100%)
 rename tests/{acceptance => avocado}/pc_cpu_hotplug_props.py (100%)
 rename tests/{acceptance => avocado}/ppc_405.py (100%)
 rename tests/{acceptance => avocado}/ppc_bamboo.py (100%)
 rename tests/{acceptance => avocado}/ppc_mpc8544ds.py (100%)
 rename tests/{acceptance => avocado}/ppc_prep_40p.py (92%)
 rename tests/{acceptance => avocado}/ppc_pseries.py (100%)
 rename tests/{acceptance => avocado}/ppc_virtex_ml507.py (100%)
 rename tests/{acceptance => avocado}/replay_kernel.py (100%)
 rename tests/{acceptance => avocado}/replay_linux.py (100%)
 rename tests/{acceptance => avocado}/reverse_debugging.py (100%)
 rename tests/{acceptance => avocado}/smmu.py (100%)
 rename tests/{acceptance => avocado}/tcg_plugins.py (100%)
 rename tests/{acceptance => avocado}/tesseract_utils.py (100%)
 rename tests/{acceptance => avocado}/version.py (100%)
 rename tests/{acceptance => avocado}/virtio-gpu.py (100%)
 rename tests/{acceptance => avocado}/virtio_check_params.py (100%)
 rename tests/{acceptance => avocado}/virtio_version.py (100%)
 rename tests/{acceptance => avocado}/virtiofs_submounts.py (100%)
 rename tests/{acceptance => avocado}/virtiofs_submounts.py.data/cleanup.sh (100%)
 rename tests/{acceptance => avocado}/virtiofs_submounts.py.data/guest-cleanup.sh (100%)
 rename tests/{acceptance => avocado}/virtiofs_submounts.py.data/guest.sh (100%)
 rename tests/{acceptance => avocado}/virtiofs_submounts.py.data/host.sh (100%)
 rename tests/{acceptance => avocado}/vnc.py (100%)
 rename tests/{acceptance => avocado}/x86_cpu_model_versions.py (100%)

Comments

Niek Linnenbank Nov. 3, 2021, 10:19 p.m. UTC | #1
Hi Willian,

For the Orange Pi PC documentation:

Reviewed-by: Niek Linnenbank <nieklinnenbank@gmail.com>


Op wo 3 nov. 2021 22:14 schreef Willian Rampazzo <willianr@redhat.com>:

> In the discussion about renaming the `tests/acceptance` [1], the
> conclusion was that the folders inside `tests` are related to the
> framework running the tests and not directly related to the type of
> the tests.
>
> This changes the folder to `tests/avocado` and adjusts the MAKEFILE, the
> CI related files and the documentation.
>
> [1] https://lists.gnu.org/archive/html/qemu-devel/2021-05/msg06553.html
>
> GitLab pipeline with new naming:
> https://gitlab.com/willianrampazzo/qemu/-/pipelines/401431592
> Signed-off-by: Willian Rampazzo <willianr@redhat.com>
>
> Willian Rampazzo (1):
>   tests/acceptance: rename tests acceptance to tests avocado
>
>  .gitlab-ci.d/buildtest-template.yml           |  2 +-
>  .gitlab-ci.d/buildtest.yml                    | 56 +++++++++----------
>  MAINTAINERS                                   | 52 ++++++++---------
>  configure                                     |  2 +-
>  docs/devel/build-system.rst                   |  2 +-
>  docs/devel/ci-definitions.rst.inc             |  2 +-
>  docs/devel/testing.rst                        | 49 ++++++++--------
>  docs/system/arm/orangepi.rst                  |  8 +--
>  python/qemu/machine/README.rst                |  2 +-
>  python/qemu/qmp/README.rst                    |  2 +-
>  python/qemu/utils/README.rst                  |  2 +-
>  tests/Makefile.include                        | 14 ++---
>  tests/acceptance/README.rst                   | 10 ----
>  tests/avocado/README.rst                      | 10 ++++
>  .../avocado_qemu/__init__.py                  |  2 +-
>  tests/{acceptance => avocado}/boot_linux.py   |  0
>  .../boot_linux_console.py                     |  0
>  tests/{acceptance => avocado}/boot_xen.py     |  0
>  tests/{acceptance => avocado}/cpu_queries.py  |  0
>  .../empty_cpu_model.py                        |  0
>  tests/{acceptance => avocado}/hotplug_cpu.py  |  0
>  tests/{acceptance => avocado}/info_usernet.py |  0
>  tests/{acceptance => avocado}/intel_iommu.py  |  0
>  tests/{acceptance => avocado}/linux_initrd.py |  2 +-
>  .../linux_ssh_mips_malta.py                   |  0
>  .../machine_arm_canona1100.py                 |  0
>  .../machine_arm_integratorcp.py               |  0
>  .../machine_arm_n8x0.py                       |  0
>  tests/{acceptance => avocado}/machine_avr6.py |  2 +-
>  .../machine_m68k_nextcube.py                  |  0
>  .../machine_microblaze.py                     |  0
>  .../machine_mips_fuloong2e.py                 |  0
>  .../machine_mips_loongson3v.py                |  0
>  .../machine_mips_malta.py                     |  0
>  .../machine_rx_gdbsim.py                      |  0
>  .../machine_s390_ccw_virtio.py                |  0
>  .../machine_sparc64_sun4u.py                  |  0
>  .../machine_sparc_leon3.py                    |  0
>  tests/{acceptance => avocado}/migration.py    |  0
>  tests/{acceptance => avocado}/multiprocess.py |  0
>  .../pc_cpu_hotplug_props.py                   |  0
>  tests/{acceptance => avocado}/ppc_405.py      |  0
>  tests/{acceptance => avocado}/ppc_bamboo.py   |  0
>  .../{acceptance => avocado}/ppc_mpc8544ds.py  |  0
>  tests/{acceptance => avocado}/ppc_prep_40p.py | 12 ++--
>  tests/{acceptance => avocado}/ppc_pseries.py  |  0
>  .../ppc_virtex_ml507.py                       |  0
>  .../{acceptance => avocado}/replay_kernel.py  |  0
>  tests/{acceptance => avocado}/replay_linux.py |  0
>  .../reverse_debugging.py                      |  0
>  tests/{acceptance => avocado}/smmu.py         |  0
>  tests/{acceptance => avocado}/tcg_plugins.py  |  0
>  .../tesseract_utils.py                        |  0
>  tests/{acceptance => avocado}/version.py      |  0
>  tests/{acceptance => avocado}/virtio-gpu.py   |  0
>  .../virtio_check_params.py                    |  0
>  .../{acceptance => avocado}/virtio_version.py |  0
>  .../virtiofs_submounts.py                     |  0
>  .../virtiofs_submounts.py.data/cleanup.sh     |  0
>  .../guest-cleanup.sh                          |  0
>  .../virtiofs_submounts.py.data/guest.sh       |  0
>  .../virtiofs_submounts.py.data/host.sh        |  0
>  tests/{acceptance => avocado}/vnc.py          |  0
>  .../x86_cpu_model_versions.py                 |  0
>  64 files changed, 113 insertions(+), 118 deletions(-)
>  delete mode 100644 tests/acceptance/README.rst
>  create mode 100644 tests/avocado/README.rst
>  rename tests/{acceptance => avocado}/avocado_qemu/__init__.py (99%)
>  rename tests/{acceptance => avocado}/boot_linux.py (100%)
>  rename tests/{acceptance => avocado}/boot_linux_console.py (100%)
>  rename tests/{acceptance => avocado}/boot_xen.py (100%)
>  rename tests/{acceptance => avocado}/cpu_queries.py (100%)
>  rename tests/{acceptance => avocado}/empty_cpu_model.py (100%)
>  rename tests/{acceptance => avocado}/hotplug_cpu.py (100%)
>  rename tests/{acceptance => avocado}/info_usernet.py (100%)
>  rename tests/{acceptance => avocado}/intel_iommu.py (100%)
>  rename tests/{acceptance => avocado}/linux_initrd.py (99%)
>  rename tests/{acceptance => avocado}/linux_ssh_mips_malta.py (100%)
>  rename tests/{acceptance => avocado}/machine_arm_canona1100.py (100%)
>  rename tests/{acceptance => avocado}/machine_arm_integratorcp.py (100%)
>  rename tests/{acceptance => avocado}/machine_arm_n8x0.py (100%)
>  rename tests/{acceptance => avocado}/machine_avr6.py (98%)
>  rename tests/{acceptance => avocado}/machine_m68k_nextcube.py (100%)
>  rename tests/{acceptance => avocado}/machine_microblaze.py (100%)
>  rename tests/{acceptance => avocado}/machine_mips_fuloong2e.py (100%)
>  rename tests/{acceptance => avocado}/machine_mips_loongson3v.py (100%)
>  rename tests/{acceptance => avocado}/machine_mips_malta.py (100%)
>  rename tests/{acceptance => avocado}/machine_rx_gdbsim.py (100%)
>  rename tests/{acceptance => avocado}/machine_s390_ccw_virtio.py (100%)
>  rename tests/{acceptance => avocado}/machine_sparc64_sun4u.py (100%)
>  rename tests/{acceptance => avocado}/machine_sparc_leon3.py (100%)
>  rename tests/{acceptance => avocado}/migration.py (100%)
>  rename tests/{acceptance => avocado}/multiprocess.py (100%)
>  rename tests/{acceptance => avocado}/pc_cpu_hotplug_props.py (100%)
>  rename tests/{acceptance => avocado}/ppc_405.py (100%)
>  rename tests/{acceptance => avocado}/ppc_bamboo.py (100%)
>  rename tests/{acceptance => avocado}/ppc_mpc8544ds.py (100%)
>  rename tests/{acceptance => avocado}/ppc_prep_40p.py (92%)
>  rename tests/{acceptance => avocado}/ppc_pseries.py (100%)
>  rename tests/{acceptance => avocado}/ppc_virtex_ml507.py (100%)
>  rename tests/{acceptance => avocado}/replay_kernel.py (100%)
>  rename tests/{acceptance => avocado}/replay_linux.py (100%)
>  rename tests/{acceptance => avocado}/reverse_debugging.py (100%)
>  rename tests/{acceptance => avocado}/smmu.py (100%)
>  rename tests/{acceptance => avocado}/tcg_plugins.py (100%)
>  rename tests/{acceptance => avocado}/tesseract_utils.py (100%)
>  rename tests/{acceptance => avocado}/version.py (100%)
>  rename tests/{acceptance => avocado}/virtio-gpu.py (100%)
>  rename tests/{acceptance => avocado}/virtio_check_params.py (100%)
>  rename tests/{acceptance => avocado}/virtio_version.py (100%)
>  rename tests/{acceptance => avocado}/virtiofs_submounts.py (100%)
>  rename tests/{acceptance =>
> avocado}/virtiofs_submounts.py.data/cleanup.sh (100%)
>  rename tests/{acceptance =>
> avocado}/virtiofs_submounts.py.data/guest-cleanup.sh (100%)
>  rename tests/{acceptance => avocado}/virtiofs_submounts.py.data/guest.sh
> (100%)
>  rename tests/{acceptance => avocado}/virtiofs_submounts.py.data/host.sh
> (100%)
>  rename tests/{acceptance => avocado}/vnc.py (100%)
>  rename tests/{acceptance => avocado}/x86_cpu_model_versions.py (100%)
>
> --
> 2.33.1
>
>
>