test suite reviews and discussions
 help / color / mirror / Atom feed
From: "Tu, Lijuan" <lijuan.tu@intel.com>
To: "Li, HongboX" <hongbox.li@intel.com>, "dts@dpdk.org" <dts@dpdk.org>
Cc: "Li, HongboX" <hongbox.li@intel.com>
Subject: RE: [dts][PATCH V2] tests/dcf_lifecycle:add kernel check in test script
Date: Tue, 28 Mar 2023 01:11:46 +0000	[thread overview]
Message-ID: <CY5PR11MB618782DC30C5469EA38FED5BF5889@CY5PR11MB6187.namprd11.prod.outlook.com> (raw)
In-Reply-To: <20230324155759.8864-1-hongbox.li@intel.com>



> -----Original Message-----
> From: Hongbo Li <hongbox.li@intel.com>
> Sent: Friday, March 24, 2023 11:58 PM
> To: dts@dpdk.org
> Cc: Li, HongboX <hongbox.li@intel.com>
> Subject: [dts][PATCH V2] tests/dcf_lifecycle:add kernel check in test script
> 
> 1.Some testcase require the kernel 4.19+ in the testplan, but test script does not
> check the kernel. Which will cause the lower version of kernel to fail when run
> cases.
> 2.The "--color" option of dmesg command is not supported in the OS with the
> lower version kernel, and the option only changes the color of the output. So
> delete this option to make the OS with the lower version kernel support some
> testcase.
> 
> Signed-off-by: Hongbo Li <hongbox.li@intel.com>
> ---
> v2:skip case of test_dcf_with_adq_03
> 
>  tests/TestSuite_dcf_lifecycle.py | 22 +++++++++++++++++++++-
>  1 file changed, 21 insertions(+), 1 deletion(-)
> 
> diff --git a/tests/TestSuite_dcf_lifecycle.py b/tests/TestSuite_dcf_lifecycle.py
> index d3758c6c..f3f17678 100644
> --- a/tests/TestSuite_dcf_lifecycle.py
> +++ b/tests/TestSuite_dcf_lifecycle.py
> @@ -184,7 +184,7 @@ class TestDcfLifeCycle(TestCase):
>          self.d_a_con(cmd)
> 
>      def get_dmesg(self):
> -        cmd = "dmesg --color=never"
> +        cmd = "dmesg"
>          return self.d_a_con(cmd) or ""
> 
>      def vf_init(self):
> @@ -1078,6 +1078,11 @@ class TestDcfLifeCycle(TestCase):
>          self.verify_supported_nic()
>          # prepare testing environment
>          self.preset_test_environment()
> +        kernel_version = self.dut.send_expect("uname -r", "# ")
> +        try:
> +            self.kernel_version = re.match("[0-9]+\.\d*", kernel_version).group(0)
> +        except Exception as e:
> +            self.logger.warning(e)

If exception happens here, will raise attribute error in the call lines, as self.kernel_version cannot be found.

> 
>      def tear_down_all(self):
>          """
> @@ -1182,6 +1187,11 @@ class TestDcfLifeCycle(TestCase):
>          """
>          When ADQ set on PF, PF should reject the DCF mode
>          """
> +        if self.kernel_version:
> +            self.skip_case(
> +                self.kernel_version > "4.19",
> +                "Host kernel version is required 4.19+",
> +            )
>          msg = "begin : When ADQ set on PF, PF should reject the DCF mode"
>          self.logger.info(msg)
>          self.verify_dcf_with_adq_01()
> @@ -1190,6 +1200,11 @@ class TestDcfLifeCycle(TestCase):
>          """
>          When DCF mode enabled, ADQ setting on PF shall fail
>          """
> +        if self.kernel_version:
> +            self.skip_case(
> +                self.kernel_version > "4.19",
> +                "Host kernel version is required 4.19+",
> +            )
>          msg = "begin : When DCF mode enabled, ADQ setting on PF shall fail"
>          self.logger.info(msg)
>          self.verify_dcf_with_adq_02()
> @@ -1198,6 +1213,11 @@ class TestDcfLifeCycle(TestCase):
>          """
>          DCF and ADQ can be enabled on different PF
>          """
> +        if self.kernel_version:
> +            self.skip_case(
> +                self.kernel_version > "4.19",
> +                "Host kernel version is required 4.19+",
> +            )
>          self.verify(len(self.dut_ports) >= 2, "2 ports at least")
>          msg = "begin : DCF and ADQ can be enabled on different PF"
>          self.logger.info(msg)
> --
> 2.17.1


      reply	other threads:[~2023-03-28  1:11 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-24 15:57 Hongbo Li
2023-03-28  1:11 ` Tu, Lijuan [this message]

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=CY5PR11MB618782DC30C5469EA38FED5BF5889@CY5PR11MB6187.namprd11.prod.outlook.com \
    --to=lijuan.tu@intel.com \
    --cc=dts@dpdk.org \
    --cc=hongbox.li@intel.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).