test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH 00/17] enable carlsville
@ 2019-08-19 11:06 qifu
  2019-08-19 11:06 ` [dts] [PATCH 01/17] conf/test_case_checklist: add carlsville to checklist qifu
                   ` (17 more replies)
  0 siblings, 18 replies; 33+ messages in thread
From: qifu @ 2019-08-19 11:06 UTC (permalink / raw)
  To: dts; +Cc: qifu

Add carlsville to settings.py, checklist, supportlist and other
testsuits to enable it in dpdk.

qifu (17):
  conf/test_case_checklist: add carlsville to checklist
  framework/settings: add carlsville to settings
  conf/test_case_supportlist: add carlsville to supportlist
  tests/TestSuite_dual_vlan: add carlsville to support nic of dual_vlan
  tests/TestSuite_fdir: add carlsville to support nic of fdir
  tests/TestSuite_fortville_rss_granularity_config: add carlsville to
    support nic of fortville_rss_granularity_config
  tests/TestSuite_generic_filter: add carlsville to support nic of
    generic_filter
  tests/TestSuite_ipgre: add carlsville to support nic of ipgre
  tests/TestSuite_link_status_interrupt: add carlsville to support nic
    of link_status_interrupt
  tests/TestSuite_nvgre: add carlsville to support nic of nvgre
  tests/TestSuite_pmdrss_hash: add carlsville to support nic of
    pmdrss_hash
  tests/TestSuite_ptype_mapping: add carlsville to support nic of
    ptype_mapping
  tests/TestSuite_scatter: add carlsville to support nic of scatter
  tests/TestSuite_uni_pkt: add carlsville to support nic of uni_pkt
  tests/TestSuite_vlan_ethertype_config: add carlsville to support nic
    of vlan_ethertype_config
  tests/TestSuite_vlan: add carlsville to support nic of vlan
  tests/TestSuite_vxlan: add carlsville to support nic of vxlan

 conf/test_case_checklist.json                 | 48 ++++++++++++-------
 conf/test_case_supportlist.json               | 39 ++++++++++-----
 framework/settings.py                         |  2 +
 tests/TestSuite_dual_vlan.py                  | 20 ++++----
 tests/TestSuite_fdir.py                       | 32 ++++++-------
 ...tSuite_fortville_rss_granularity_config.py |  2 +-
 tests/TestSuite_generic_filter.py             |  6 +--
 tests/TestSuite_ipgre.py                      |  2 +-
 tests/TestSuite_link_status_interrupt.py      |  2 +-
 tests/TestSuite_nvgre.py                      |  2 +-
 tests/TestSuite_pmdrss_hash.py                |  6 +--
 tests/TestSuite_ptype_mapping.py              |  2 +-
 tests/TestSuite_scatter.py                    |  2 +-
 tests/TestSuite_uni_pkt.py                    | 24 +++++-----
 tests/TestSuite_vlan.py                       |  2 +-
 tests/TestSuite_vlan_ethertype_config.py      |  2 +-
 tests/TestSuite_vxlan.py                      |  2 +-
 17 files changed, 113 insertions(+), 82 deletions(-)

-- 
2.17.1


^ permalink raw reply	[flat|nested] 33+ messages in thread
* [dts] [PATCH V2 08/17]tests/TestSuite_ipgre: add carlsville to support nic of ipgre
@ 2019-08-19 17:57 qifu
  2019-08-19  9:41 ` Lin, Xueqin
  0 siblings, 1 reply; 33+ messages in thread
From: qifu @ 2019-08-19 17:57 UTC (permalink / raw)
  To: dts; +Cc: qifu

Add carlsville to support nic of ipgre.
Signed-off-by: qifu <qi.fu@intel.com>
---
 tests/TestSuite_ipgre.py | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/tests/TestSuite_ipgre.py b/tests/TestSuite_ipgre.py
index 6f465fa..2a66928 100644
--- a/tests/TestSuite_ipgre.py
+++ b/tests/TestSuite_ipgre.py
@@ -63,8 +63,9 @@ class TestIpgre(TestCase):
         """
         self.printFlag = self._enable_debug
         ports = self.dut.get_ports()
-        self.verify(self.nic.startswith("fortville"),
-                    "GRE tunnel packet type only support by Fortville")
+        if self.nic != "carlsville":
+            self.verify(self.nic.startswith("fortville"),
+                        "GRE tunnel packet type only support by Fortville and carlsville")
         self.verify(len(ports) >= 1, "Insufficient ports for testing")
         valports = [_ for _ in ports if self.tester.get_local_port(_) != -1]
         # start testpmd
-- 
2.17.1


^ permalink raw reply	[flat|nested] 33+ messages in thread

end of thread, other threads:[~2019-08-30  2:55 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-08-19 11:06 [dts] [PATCH 00/17] enable carlsville qifu
2019-08-19 11:06 ` [dts] [PATCH 01/17] conf/test_case_checklist: add carlsville to checklist qifu
2019-08-29 11:44   ` [dts] [PATCH V2 01/17]conf/test_case_checklist: " qifu
2019-08-30  2:55     ` Tu, Lijuan
2019-08-19 11:06 ` [dts] [PATCH 02/17] framework/settings: add carlsville to settings qifu
2019-08-29 11:46   ` [dts] [PATCH V2 02/17]framework/settings: " qifu
2019-08-30  2:53     ` Tu, Lijuan
2019-08-19 11:06 ` [dts] [PATCH 03/17] conf/test_case_supportlist: add carlsville to supportlist qifu
2019-08-19 11:06 ` [dts] [PATCH 04/17] tests/TestSuite_dual_vlan: add carlsville to support nic of dual_vlan qifu
2019-08-19 11:06 ` [dts] [PATCH 05/17] tests/TestSuite_fdir: add carlsville to support nic of fdir qifu
2019-08-19 11:06 ` [dts] [PATCH 06/17] tests/TestSuite_fortville_rss_granularity_config: add carlsville to support nic of fortville_rss_granularity_config qifu
2019-08-19 11:06 ` [dts] [PATCH 07/17] tests/TestSuite_generic_filter: add carlsville to support nic of generic_filter qifu
2019-08-19 11:06 ` [dts] [PATCH 08/17] tests/TestSuite_ipgre: add carlsville to support nic of ipgre qifu
2019-08-19  5:05   ` Mo, YufengX
2019-08-19  5:23     ` Fu, Qi
2019-08-19  5:28       ` Mo, YufengX
2019-08-19  5:40         ` Fu, Qi
2019-08-19 18:09   ` [dts] [PATCH V2 08/17]tests/TestSuite_ipgre: " qifu
2019-08-20 11:02     ` [dts] [PATCH V3 " qifu
2019-08-28 10:39       ` Tu, Lijuan
2019-08-19 11:06 ` [dts] [PATCH 09/17] tests/TestSuite_link_status_interrupt: add carlsville to support nic of link_status_interrupt qifu
2019-08-19 11:06 ` [dts] [PATCH 10/17] tests/TestSuite_nvgre: add carlsville to support nic of nvgre qifu
2019-08-19 11:06 ` [dts] [PATCH 11/17] tests/TestSuite_pmdrss_hash: add carlsville to support nic of pmdrss_hash qifu
2019-08-19 11:06 ` [dts] [PATCH 12/17] tests/TestSuite_ptype_mapping: add carlsville to support nic of ptype_mapping qifu
2019-08-19 11:06 ` [dts] [PATCH 13/17] tests/TestSuite_scatter: add carlsville to support nic of scatter qifu
2019-08-19 11:06 ` [dts] [PATCH 14/17] tests/TestSuite_uni_pkt: add carlsville to support nic of uni_pkt qifu
2019-08-19 11:06 ` [dts] [PATCH 15/17] tests/TestSuite_vlan_ethertype_config: add carlsville to support nic of vlan_ethertype_config qifu
2019-08-19 11:06 ` [dts] [PATCH 16/17] tests/TestSuite_vlan: add carlsville to support nic of vlan qifu
2019-08-19 11:06 ` [dts] [PATCH 17/17] tests/TestSuite_vxlan: add carlsville to support nic of vxlan qifu
2019-08-28 10:36 ` [dts] [PATCH 00/17] enable carlsville Tu, Lijuan
2019-08-19 17:57 [dts] [PATCH V2 08/17]tests/TestSuite_ipgre: add carlsville to support nic of ipgre qifu
2019-08-19  9:41 ` Lin, Xueqin
2019-08-19 10:07   ` Lin, Xueqin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).