[V1] tests/runtime_vf_queue_number_kernel: modify test script case name

Message ID 20220608045254.350739-1-yaqi.tang@intel.com (mailing list archive)
State Accepted
Headers
Series [V1] tests/runtime_vf_queue_number_kernel: modify test script case name |

Checks

Context Check Description
ci/Intel-dts-format-test success Testing OK
ci/Intel-dts-pylama-test success Testing OK
ci/Intel-dts-suite-test fail Testing issues

Commit Message

Yaqi Tang June 8, 2022, 4:52 a.m. UTC
  The test script case name is not match the test plan, so modify test script case name. 

Signed-off-by: Yaqi Tang <yaqi.tang@intel.com>
---
 tests/TestSuite_runtime_vf_queue_number_kernel.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
  

Comments

Tu, Lijuan June 15, 2022, 9:02 a.m. UTC | #1
On Wed,  8 Jun 2022 04:52:54 +0000, Yaqi Tang <yaqi.tang@intel.com> wrote:
> The test script case name is not match the test plan, so modify test script case name. 
> 
> Signed-off-by: Yaqi Tang <yaqi.tang@intel.com>


Applied, thanks
  

Patch

diff --git a/tests/TestSuite_runtime_vf_queue_number_kernel.py b/tests/TestSuite_runtime_vf_queue_number_kernel.py
index ba83717a..68639dfa 100644
--- a/tests/TestSuite_runtime_vf_queue_number_kernel.py
+++ b/tests/TestSuite_runtime_vf_queue_number_kernel.py
@@ -155,7 +155,7 @@  class TestRuntimeVfQueueNumberKernel(TestCase):
         self.vm0_testpmd.execute_cmd("quit", "# ")
         time.sleep(3)
 
-    def test_set_valid_vf_queue_num(self):
+    def test_set_valid_vf_queue_num_command_line(self):
         """
         set valid VF queue number in testpmd command-line options
         """
@@ -237,7 +237,7 @@  class TestRuntimeVfQueueNumberKernel(TestCase):
                     "queue number is too big",
                 )
 
-    def test_set_valid_vf_queue_num_with_function(self):
+    def test_set_valid_vf_queue_num_with_testpmd_command(self):
         random_queue = random.randint(2, 15)
         queue_nums = [1, random_queue, self.max_queue]
         self.vm0_testpmd = PmdOutput(self.vm_dut_0)