From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 02B861B69F for ; Tue, 6 Feb 2018 10:44:45 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 06 Feb 2018 01:44:44 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.46,468,1511856000"; d="scan'208";a="17443597" Received: from unknown (HELO dpdk-fedora20.icx.intel.com) ([10.240.176.135]) by fmsmga002.fm.intel.com with ESMTP; 06 Feb 2018 01:44:44 -0800 From: "zhu,shuai" To: dts@dpdk.org Cc: "zhu,shuai" Date: Tue, 6 Feb 2018 17:45:54 +0800 Message-Id: <1517910354-43848-1-git-send-email-shuaix.zhu@intel.com> X-Mailer: git-send-email 1.9.3 Subject: [dts] [PATCH V1] tests/vlan_ethertype_config Modify the parameters 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: , X-List-Received-Date: Tue, 06 Feb 2018 09:44:46 -0000 Perhaps the older version is used in PKT_RX_VLAN_PKT, and now the version exists PKT_RX_VLAN. Signed-off-by: zhu,shuai --- tests/TestSuite_vlan_ethertype_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_vlan_ethertype_config.py b/tests/TestSuite_vlan_ethertype_config.py index 98bbfe6..8e6dd49 100644 --- a/tests/TestSuite_vlan_ethertype_config.py +++ b/tests/TestSuite_vlan_ethertype_config.py @@ -189,7 +189,7 @@ class TestVlanEthertypeConfig(TestCase): self.vlan_send_packet(rx_vlan, tpid) out = self.dut.get_session_output() self.verify( - "PKT_RX_VLAN_PKT" in out, "Vlan recognized error:" + str(out)) + "PKT_RX_VLAN" in out, "Vlan recognized error:" + str(out)) def test_vlan_filter_on_off(self): """ -- 1.9.3