From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 47154A0524; Thu, 26 Nov 2020 08:43:37 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 1F467C93C; Thu, 26 Nov 2020 08:43:36 +0100 (CET) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id F3408C938 for ; Thu, 26 Nov 2020 08:43:34 +0100 (CET) IronPort-SDR: UIdxn+XMWD4eZSgYP/cg27haH2s3KOpu5l9AYfFOK4qx2Pi7RoD8Zgv/b9QYI+aJCcPwbkP3am M6Ls0erDS3fw== X-IronPort-AV: E=McAfee;i="6000,8403,9816"; a="236380976" X-IronPort-AV: E=Sophos;i="5.78,371,1599548400"; d="scan'208";a="236380976" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Nov 2020 23:43:33 -0800 IronPort-SDR: wgoR1M2DESqRGSn/YtNnIEq2X3U6wDp6ak2lWR/3e6Bb1XPN0t4OUmHEejjDLMdYAwz7g4LyFM vvNZdnRzLedA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.78,371,1599548400"; d="scan'208";a="479254444" Received: from npg_dpdk_nic_yuanpeng_tester62.sh.intel.com ([10.67.119.113]) by orsmga004.jf.intel.com with ESMTP; 25 Nov 2020 23:43:32 -0800 From: Peng Yuan To: dts@dpdk.org Cc: pengyuan Date: Thu, 26 Nov 2020 14:46:38 +0000 Message-Id: <1606401999-50212-1-git-send-email-yuan.peng@intel.com> X-Mailer: git-send-email 2.7.4 Subject: [dts] [PATCH v1]test_plans: remove per queue stats check X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dts-bounces@dpdk.org Sender: "dts" From: pengyuan FVL does not support hardware per queue stats, so remove the per queue stats check from test plan. Signed-off-by: pengyuan diff --git a/test_plans/stats_checks_test_plan.rst b/test_plans/stats_checks_test_plan.rst index e571cb34..f314ba88 100644 --- a/test_plans/stats_checks_test_plan.rst +++ b/test_plans/stats_checks_test_plan.rst @@ -128,7 +128,8 @@ The fields checked are RX-packets and TX-packets of each queue stats, RX-packets, RX-bytes, TX-packets and TX-bytes of each port stats, rx_good_packets and rx_good_bytes of each port xstats, tx_good_packets and tx_good_bytes of each port xstats, -rx_qx_packets, rx_qx_bytes, tx_qx_packets and tx_qx_bytes of each port xstats. +FVL does not support hardware per queue stats, +so we won't check rx and tx per queue stats. Test Case: PF xstatus Checks ============================ @@ -210,17 +211,17 @@ Test Case: PF xstatus Checks rx_good_bytes: 6000 tx_good_bytes: 0 ...... - rx_q0_packets: 29 - rx_q0_bytes: 1740 + rx_q0_packets: 0 + rx_q0_bytes: 0 rx_q0_errors: 0 - rx_q1_packets: 21 - rx_q1_bytes: 1260 + rx_q1_packets: 0 + rx_q1_bytes: 0 rx_q1_errors: 0 - rx_q2_packets: 24 - rx_q2_bytes: 1440 + rx_q2_packets: 0 + rx_q2_bytes: 0 rx_q2_errors: 0 - rx_q3_packets: 26 - rx_q3_bytes: 1560 + rx_q3_packets: 0 + rx_q3_bytes: 0 rx_q3_errors: 0 tx_q0_packets: 0 tx_q0_bytes: 0 @@ -248,21 +249,20 @@ Test Case: PF xstatus Checks rx_q3_packets: 0 rx_q3_bytes: 0 rx_q3_errors: 0 - tx_q0_packets: 29 - tx_q0_bytes: 1740 - tx_q1_packets: 21 - tx_q1_bytes: 1260 - tx_q2_packets: 24 - tx_q2_bytes: 1440 - tx_q3_packets: 26 - tx_q3_bytes: 1560 + tx_q0_packets: 0 + tx_q0_bytes: 0 + tx_q1_packets: 0 + tx_q1_bytes: 0 + tx_q2_packets: 0 + tx_q2_bytes: 0 + tx_q3_packets: 0 + tx_q3_bytes: 0 verify rx_good_packets, RX-packets of port 0 and tx_good_packets, TX-packets of port 1 are both 100. rx_good_bytes, RX-bytes of port 0 and tx_good_bytes, TX-bytes of port 1 are the same. -RX-packets of each queue of port 0 are equal to rx_qx_packets of each queue of port 0. -TX-packets of each queue of port 1 are equal to tx_qx_packets of each queue of port 1. -The sum of rx_qx_bytes of each queue of port 0 is equal to the rx_good_packets of port 0. -The sum of tx_qx_bytes of each queue of port 1 is equal to the tx_good_packets of port 1. +FVL does not support hardware per queue stats, +so rx_qx_packets and rx_qx_bytes are both 0. +tx_qx_packets and tx_qx_bytes are both 0 too. Test Case: VF xstats Checks ============================ -- 2.17.1