[V2,1/2] test_plans/vf_pf_reset: add new case and plan for pf_reset_trigger_vf_reset

Message ID 20230106102758.11043-1-hongbox.li@intel.com (mailing list archive)
State Accepted
Headers
Series [V2,1/2] test_plans/vf_pf_reset: add new case and plan for pf_reset_trigger_vf_reset |

Commit Message

Li, HongboX Jan. 6, 2023, 10:27 a.m. UTC
  add case test_pf_reset_trigger_vf_reset according to test plan.

Signed-off-by: Tang Yaqi <yaqi.tang@intel.com>
Signed-off-by: Hongbo Li <hongbox.li@intel.com>
---

v2:
-modify git comments
 test_plans/vf_pf_reset_test_plan.rst | 40 ++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)
  

Patch

diff --git a/test_plans/vf_pf_reset_test_plan.rst b/test_plans/vf_pf_reset_test_plan.rst
index 866214f7..cc204e26 100644
--- a/test_plans/vf_pf_reset_test_plan.rst
+++ b/test_plans/vf_pf_reset_test_plan.rst
@@ -630,3 +630,43 @@  test Case 10: vf reset (two vfs passed through to two VM)
 
 8. Reset vf0 and vf1, send the two packets,
    vf0 can forward both of the two type packets to VF1.
+
+test case 11: pf reset trigger vf reset
+=======================================
+
+1. Execute step1-step6 of test case 1.
+
+2. Reset PF::
+
+     echo 1 > /sys/bus/pci/devices/0000:81:00.0/reset
+
+3. Testpmd shows::
+
+     Port 0: reset event
+     Port 1: reset event
+
+4. Reset the vfs::
+
+     testpmd> stop
+     testpmd> port stop all
+     testpmd> port reset all
+     testpmd> port start all
+     testpmd> start
+
+   Send the same 1000 packets with scapy from tester, verify the packets can be
+   received by one VF and can be forward to another VF correctly,
+   check the port info::
+
+     testpmd> show port info all
+
+     ********************* Infos for port 0  *********************
+     MAC address: 00:11:22:33:44:11
+     Promiscuous mode: disabled
+     Allmulticast mode: enabled
+
+     ********************* Infos for port 1  *********************
+     MAC address: 00:11:22:33:44:12
+     Promiscuous mode: disabled
+     Allmulticast mode: enabled
+
+   The info status is consistent to the status before reset.