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 A22421B62A for ; Wed, 7 Feb 2018 09:40:17 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 07 Feb 2018 00:40:16 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.46,471,1511856000"; d="scan'208";a="28807597" Received: from unknown (HELO dpdk-fedora20.icx.intel.com) ([10.240.176.135]) by fmsmga001.fm.intel.com with ESMTP; 07 Feb 2018 00:40:15 -0800 From: Peng Yuan To: dts@dpdk.org Cc: "zhu,shuai" Date: Wed, 7 Feb 2018 16:41:28 +0800 Message-Id: <1517992888-47426-1-git-send-email-yuan.peng@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: Wed, 07 Feb 2018 08:40:18 -0000 From: "zhu,shuai" Perhaps the older version is used in PKT_RX_VLAN_PKT, and now the version exists PKT_RX_VLAN.commit 380a7aab. 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