qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Peter Maydell <peter.maydell@linaro.org>
To: Nabih Estefan <nabihestefan@google.com>
Cc: qemu-arm@nongnu.org, qemu-devel@nongnu.org, kfting@nuvoton.com,
	 wuhaotsh@google.com, jasonwang@redhat.com,
	avi.fishman@nuvoton.com,  kwliu@nuvoton.com,
	tomer.maimon@nuvoton.com, Hila.Miranda-Kuzi@nuvoton.com
Subject: Re: [PATCH v5 06/11] tests/qtest: Creating qtest for GMAC Module
Date: Mon, 11 Dec 2023 15:41:03 +0000	[thread overview]
Message-ID: <CAFEAcA8ABPROeGEp+eEiBVzDj-NMbX7Extwv=ZAziZygwCYDrw@mail.gmail.com> (raw)
In-Reply-To: <20231027175532.3601297-7-nabihestefan@google.com>

On Fri, 27 Oct 2023 at 18:55, Nabih Estefan <nabihestefan@google.com> wrote:
>
> From: Nabih Estefan Diaz <nabihestefan@google.com>
>
>  - Created qtest to check initialization of registers in GMAC Module.
>  - Implemented test into Build File.
>
> Change-Id: Ib0e07f6dacc1266b62b4926873ccd912250cf89d
> Signed-off-by: Nabih Estefan <nabihestefan@google.com>
> ---
>  tests/qtest/meson.build      |   7 +-
>  tests/qtest/npcm_gmac-test.c | 209 +++++++++++++++++++++++++++++++++++
>  2 files changed, 211 insertions(+), 5 deletions(-)
>  create mode 100644 tests/qtest/npcm_gmac-test.c
>
> diff --git a/tests/qtest/meson.build b/tests/qtest/meson.build
> index daec219a32..205c60aadc 100644
> --- a/tests/qtest/meson.build
> +++ b/tests/qtest/meson.build
> @@ -205,9 +205,6 @@ qtests_arm = \
>    (config_all_devices.has_key('CONFIG_ASPEED_SOC') ? qtests_aspeed : []) + \
>    (config_all_devices.has_key('CONFIG_NPCM7XX') ? qtests_npcm7xx : []) + \
>    (config_all_devices.has_key('CONFIG_GENERIC_LOADER') ? ['hexloader-test'] : []) + \
> -  (config_all_devices.has_key('CONFIG_TPM_TIS_I2C') ? ['tpm-tis-i2c-test'] : []) + \
> -  (config_all_devices.has_key('CONFIG_VEXPRESS') ? ['test-arm-mptimer'] : []) + \
> -  (config_all_devices.has_key('CONFIG_MICROBIT') ? ['microbit-test'] : []) + \
>    ['arm-cpu-features',
>     'boot-serial-test']
>
> @@ -219,8 +216,8 @@ qtests_aarch64 = \
>    (config_all_devices.has_key('CONFIG_XLNX_ZYNQMP_ARM') ? ['xlnx-can-test', 'fuzz-xlnx-dp-test'] : []) + \
>    (config_all_devices.has_key('CONFIG_XLNX_VERSAL') ? ['xlnx-canfd-test'] : []) + \
>    (config_all_devices.has_key('CONFIG_RASPI') ? ['bcm2835-dma-test'] : []) +  \
> -  (config_all.has_key('CONFIG_TCG') and                                            \
> -   config_all_devices.has_key('CONFIG_TPM_TIS_I2C') ? ['tpm-tis-i2c-test'] : []) + \
> +  (config_all_devices.has_key('CONFIG_ASPEED_SOC') ? qtests_aspeed : []) + \
> +  (config_all_devices.has_key('CONFIG_NPCM7XX') ? qtests_npcm7xx : []) + \
>    ['arm-cpu-features',
>     'numa-test',
>     'boot-serial-test',

Why does this patch remove a bunch of existing tests for non-npcm
board types ?

thanks
-- PMM


  parent reply	other threads:[~2023-12-11 15:42 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-10-27 17:55 [PATCH v5 00/11] Implementation of NPI Mailbox and GMAC Networking Module Nabih Estefan
2023-10-27 17:55 ` [PATCH v5 01/11] hw/misc: Add Nuvoton's PCI Mailbox Module Nabih Estefan
2023-11-13  2:23   ` KFTING
2023-11-17  1:33     ` KFTING
2023-10-27 17:55 ` [PATCH v5 02/11] hw/arm: Add PCI mailbox module to Nuvoton SoC Nabih Estefan
2023-11-13  3:48   ` KFTING
2023-11-17  1:34     ` KFTING
2023-10-27 17:55 ` [PATCH v5 03/11] hw/misc: Add qtest for NPCM7xx PCI Mailbox Nabih Estefan
2023-11-14  1:24   ` KFTING
2023-11-14 10:58     ` Peter Maydell
2023-11-15  1:35       ` KFTING
2023-11-16 16:24         ` Peter Maydell
2023-11-17  1:33           ` KFTING
2023-11-17  1:35     ` KFTING
2023-10-27 17:55 ` [PATCH v5 04/11] hw/net: Add NPCMXXX GMAC device Nabih Estefan
2023-11-14  5:13   ` KFTING
2023-11-17  1:36     ` KFTING
2023-10-27 17:55 ` [PATCH v5 05/11] hw/arm: Add GMAC devices to NPCM7XX SoC Nabih Estefan
2023-11-14  8:55   ` KFTING
2023-11-17  1:36     ` KFTING
2023-10-27 17:55 ` [PATCH v5 06/11] tests/qtest: Creating qtest for GMAC Module Nabih Estefan
2023-11-17  1:43   ` KFTING
2023-12-11 15:41   ` Peter Maydell [this message]
2023-10-27 17:55 ` [PATCH v5 07/11] include/hw/net: Implemented Classes and Masks for GMAC Descriptors Nabih Estefan
2023-11-17  5:14   ` KFTING
2023-10-27 17:55 ` [PATCH v5 08/11] hw/net: General GMAC Implementation Nabih Estefan
2023-11-17  7:39   ` KFTING
2023-10-27 17:55 ` [PATCH v5 09/11] hw/net: GMAC Rx Implementation Nabih Estefan
2023-11-17  9:08   ` KFTING
2023-10-27 17:55 ` [PATCH v5 10/11] hw/net: GMAC Tx Implementation Nabih Estefan
2023-11-17  9:50   ` KFTING
2023-10-27 17:55 ` [PATCH v5 11/11] tests/qtest: Adding PCS Module test to GMAC Qtest Nabih Estefan
2023-11-17 10:34   ` KFTING
2023-12-05 17:54 ` [PATCH v5 00/11] Implementation of NPI Mailbox and GMAC Networking Module Nabih Estefan
2023-12-05 21:51   ` Peter Maydell

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='CAFEAcA8ABPROeGEp+eEiBVzDj-NMbX7Extwv=ZAziZygwCYDrw@mail.gmail.com' \
    --to=peter.maydell@linaro.org \
    --cc=Hila.Miranda-Kuzi@nuvoton.com \
    --cc=avi.fishman@nuvoton.com \
    --cc=jasonwang@redhat.com \
    --cc=kfting@nuvoton.com \
    --cc=kwliu@nuvoton.com \
    --cc=nabihestefan@google.com \
    --cc=qemu-arm@nongnu.org \
    --cc=qemu-devel@nongnu.org \
    --cc=tomer.maimon@nuvoton.com \
    --cc=wuhaotsh@google.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).