test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [DTS][PATCH] add sageville and fortpark in settings add sageville and fortpark support in scatter suite
@ 2015-11-17  9:18 Jingguo Fu
  2015-11-18  1:35 ` Liu, Yong
  0 siblings, 1 reply; 4+ messages in thread
From: Jingguo Fu @ 2015-11-17  9:18 UTC (permalink / raw)
  To: dts; +Cc: Jingguo Fu

Signed-off-by: Jingguo Fu <jingguox.fu@intel.com>
---
 framework/settings.py      | 3 +++
 tests/TestSuite_scatter.py | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/framework/settings.py b/framework/settings.py
index 6b02e4d..c99dcaa 100644
--- a/framework/settings.py
+++ b/framework/settings.py
@@ -57,6 +57,7 @@ NICS = {
     'ironpond': '8086:151c',
     'twinpond': '8086:1528',
     'twinville': '8086:1512',
+    'sageville': '8086:1563',
     'hartwell': '8086:10d3',
     '82545EM': '8086:100f',
     '82540EM': '8086:100e',
@@ -73,6 +74,7 @@ NICS = {
     'fortville_spirit': '8086:1583',
     'fortville_spirit_single': '8086:1584',
     'redrockcanyou': '8086:15a4',
+    'fortpark':'8086:374c',
 }
 
 DRIVERS = {
@@ -87,6 +89,7 @@ DRIVERS = {
     'ironpond': 'ixgbe',
     'twinpond': 'ixgbe',
     'twinville': 'ixgbe',
+    'sageville': 'ixgbe',
     'hartwell': 'igb',
     '82545EM': 'igb',
     '82540EM': 'igb',
diff --git a/tests/TestSuite_scatter.py b/tests/TestSuite_scatter.py
index 3a761c4..aab2f9c 100644
--- a/tests/TestSuite_scatter.py
+++ b/tests/TestSuite_scatter.py
@@ -56,7 +56,7 @@ class TestScatter(TestCase):
         # Verify that enough ports are available
         self.verify(len(dutPorts) >= 2, "Insufficient ports")
         self.pmdout = PmdOutput(self.dut)
-        if self.nic in ["niantic", "fortville_eagle", "fortville_spirit", "fortville_spirit_single", "redrockcanyou", "ironpond", "twinpond", "springfountain"]:
+        if self.nic in ["niantic", "sageville", "fortpark", "fortville_eagle", "fortville_spirit", "fortville_spirit_single", "redrockcanyou", "ironpond", "twinpond", "springfountain"]:
             self.mbsize = 2048
         else:
             self.mbsize = 1024
-- 
1.9.3

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

* Re: [dts] [DTS][PATCH] add sageville and fortpark in settings add sageville and fortpark support in scatter suite
  2015-11-17  9:18 [dts] [DTS][PATCH] add sageville and fortpark in settings add sageville and fortpark support in scatter suite Jingguo Fu
@ 2015-11-18  1:35 ` Liu, Yong
  2015-11-18  2:14   ` Fu, JingguoX
  0 siblings, 1 reply; 4+ messages in thread
From: Liu, Yong @ 2015-11-18  1:35 UTC (permalink / raw)
  To: Jingguo Fu, dts

Applied. Thanks.  Just one question about sageville and fortpark, all 
suites beside scatter support those two Nics by default?

On 11/17/2015 05:18 PM, Jingguo Fu wrote:
> Signed-off-by: Jingguo Fu <jingguox.fu@intel.com>
> ---
>   framework/settings.py      | 3 +++
>   tests/TestSuite_scatter.py | 2 +-
>   2 files changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/framework/settings.py b/framework/settings.py
> index 6b02e4d..c99dcaa 100644
> --- a/framework/settings.py
> +++ b/framework/settings.py
> @@ -57,6 +57,7 @@ NICS = {
>       'ironpond': '8086:151c',
>       'twinpond': '8086:1528',
>       'twinville': '8086:1512',
> +    'sageville': '8086:1563',
>       'hartwell': '8086:10d3',
>       '82545EM': '8086:100f',
>       '82540EM': '8086:100e',
> @@ -73,6 +74,7 @@ NICS = {
>       'fortville_spirit': '8086:1583',
>       'fortville_spirit_single': '8086:1584',
>       'redrockcanyou': '8086:15a4',
> +    'fortpark':'8086:374c',
>   }
>   
>   DRIVERS = {
> @@ -87,6 +89,7 @@ DRIVERS = {
>       'ironpond': 'ixgbe',
>       'twinpond': 'ixgbe',
>       'twinville': 'ixgbe',
> +    'sageville': 'ixgbe',
>       'hartwell': 'igb',
>       '82545EM': 'igb',
>       '82540EM': 'igb',
> diff --git a/tests/TestSuite_scatter.py b/tests/TestSuite_scatter.py
> index 3a761c4..aab2f9c 100644
> --- a/tests/TestSuite_scatter.py
> +++ b/tests/TestSuite_scatter.py
> @@ -56,7 +56,7 @@ class TestScatter(TestCase):
>           # Verify that enough ports are available
>           self.verify(len(dutPorts) >= 2, "Insufficient ports")
>           self.pmdout = PmdOutput(self.dut)
> -        if self.nic in ["niantic", "fortville_eagle", "fortville_spirit", "fortville_spirit_single", "redrockcanyou", "ironpond", "twinpond", "springfountain"]:
> +        if self.nic in ["niantic", "sageville", "fortpark", "fortville_eagle", "fortville_spirit", "fortville_spirit_single", "redrockcanyou", "ironpond", "twinpond", "springfountain"]:
>               self.mbsize = 2048
>           else:
>               self.mbsize = 1024

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

* Re: [dts] [DTS][PATCH] add sageville and fortpark in settings add sageville and fortpark support in scatter suite
  2015-11-18  1:35 ` Liu, Yong
@ 2015-11-18  2:14   ` Fu, JingguoX
  2015-11-18  3:03     ` Liu, Yong
  0 siblings, 1 reply; 4+ messages in thread
From: Fu, JingguoX @ 2015-11-18  2:14 UTC (permalink / raw)
  To: Liu, Yong, dts

Those suites  not support by default, I will verify and find out which of them  support these nics and send patch to fix it,
thanks

-----Original Message-----
From: Liu, Yong 
Sent: Wednesday, November 18, 2015 9:35 AM
To: Fu, JingguoX; dts@dpdk.org
Cc: Xu, HuilongX
Subject: Re: [DTS][PATCH] add sageville and fortpark in settings add sageville and fortpark support in scatter suite

Applied. Thanks.  Just one question about sageville and fortpark, all suites beside scatter support those two Nics by default?

On 11/17/2015 05:18 PM, Jingguo Fu wrote:
> Signed-off-by: Jingguo Fu <jingguox.fu@intel.com>
> ---
>   framework/settings.py      | 3 +++
>   tests/TestSuite_scatter.py | 2 +-
>   2 files changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/framework/settings.py b/framework/settings.py index 
> 6b02e4d..c99dcaa 100644
> --- a/framework/settings.py
> +++ b/framework/settings.py
> @@ -57,6 +57,7 @@ NICS = {
>       'ironpond': '8086:151c',
>       'twinpond': '8086:1528',
>       'twinville': '8086:1512',
> +    'sageville': '8086:1563',
>       'hartwell': '8086:10d3',
>       '82545EM': '8086:100f',
>       '82540EM': '8086:100e',
> @@ -73,6 +74,7 @@ NICS = {
>       'fortville_spirit': '8086:1583',
>       'fortville_spirit_single': '8086:1584',
>       'redrockcanyou': '8086:15a4',
> +    'fortpark':'8086:374c',
>   }
>   
>   DRIVERS = {
> @@ -87,6 +89,7 @@ DRIVERS = {
>       'ironpond': 'ixgbe',
>       'twinpond': 'ixgbe',
>       'twinville': 'ixgbe',
> +    'sageville': 'ixgbe',
>       'hartwell': 'igb',
>       '82545EM': 'igb',
>       '82540EM': 'igb',
> diff --git a/tests/TestSuite_scatter.py b/tests/TestSuite_scatter.py 
> index 3a761c4..aab2f9c 100644
> --- a/tests/TestSuite_scatter.py
> +++ b/tests/TestSuite_scatter.py
> @@ -56,7 +56,7 @@ class TestScatter(TestCase):
>           # Verify that enough ports are available
>           self.verify(len(dutPorts) >= 2, "Insufficient ports")
>           self.pmdout = PmdOutput(self.dut)
> -        if self.nic in ["niantic", "fortville_eagle", "fortville_spirit", "fortville_spirit_single", "redrockcanyou", "ironpond", "twinpond", "springfountain"]:
> +        if self.nic in ["niantic", "sageville", "fortpark", "fortville_eagle", "fortville_spirit", "fortville_spirit_single", "redrockcanyou", "ironpond", "twinpond", "springfountain"]:
>               self.mbsize = 2048
>           else:
>               self.mbsize = 1024

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

* Re: [dts] [DTS][PATCH] add sageville and fortpark in settings add sageville and fortpark support in scatter suite
  2015-11-18  2:14   ` Fu, JingguoX
@ 2015-11-18  3:03     ` Liu, Yong
  0 siblings, 0 replies; 4+ messages in thread
From: Liu, Yong @ 2015-11-18  3:03 UTC (permalink / raw)
  To: Fu, JingguoX, dts

Got, thanks.

> -----Original Message-----
> From: Fu, JingguoX
> Sent: Wednesday, November 18, 2015 10:14 AM
> To: Liu, Yong; dts@dpdk.org
> Cc: Xu, HuilongX
> Subject: RE: [DTS][PATCH] add sageville and fortpark in settings add
> sageville and fortpark support in scatter suite
> 
> Those suites  not support by default, I will verify and find out which of
> them  support these nics and send patch to fix it,
> thanks
> 
> -----Original Message-----
> From: Liu, Yong
> Sent: Wednesday, November 18, 2015 9:35 AM
> To: Fu, JingguoX; dts@dpdk.org
> Cc: Xu, HuilongX
> Subject: Re: [DTS][PATCH] add sageville and fortpark in settings add
> sageville and fortpark support in scatter suite
> 
> Applied. Thanks.  Just one question about sageville and fortpark, all
> suites beside scatter support those two Nics by default?
> 
> On 11/17/2015 05:18 PM, Jingguo Fu wrote:
> > Signed-off-by: Jingguo Fu <jingguox.fu@intel.com>
> > ---
> >   framework/settings.py      | 3 +++
> >   tests/TestSuite_scatter.py | 2 +-
> >   2 files changed, 4 insertions(+), 1 deletion(-)
> >
> > diff --git a/framework/settings.py b/framework/settings.py index
> > 6b02e4d..c99dcaa 100644
> > --- a/framework/settings.py
> > +++ b/framework/settings.py
> > @@ -57,6 +57,7 @@ NICS = {
> >       'ironpond': '8086:151c',
> >       'twinpond': '8086:1528',
> >       'twinville': '8086:1512',
> > +    'sageville': '8086:1563',
> >       'hartwell': '8086:10d3',
> >       '82545EM': '8086:100f',
> >       '82540EM': '8086:100e',
> > @@ -73,6 +74,7 @@ NICS = {
> >       'fortville_spirit': '8086:1583',
> >       'fortville_spirit_single': '8086:1584',
> >       'redrockcanyou': '8086:15a4',
> > +    'fortpark':'8086:374c',
> >   }
> >
> >   DRIVERS = {
> > @@ -87,6 +89,7 @@ DRIVERS = {
> >       'ironpond': 'ixgbe',
> >       'twinpond': 'ixgbe',
> >       'twinville': 'ixgbe',
> > +    'sageville': 'ixgbe',
> >       'hartwell': 'igb',
> >       '82545EM': 'igb',
> >       '82540EM': 'igb',
> > diff --git a/tests/TestSuite_scatter.py b/tests/TestSuite_scatter.py
> > index 3a761c4..aab2f9c 100644
> > --- a/tests/TestSuite_scatter.py
> > +++ b/tests/TestSuite_scatter.py
> > @@ -56,7 +56,7 @@ class TestScatter(TestCase):
> >           # Verify that enough ports are available
> >           self.verify(len(dutPorts) >= 2, "Insufficient ports")
> >           self.pmdout = PmdOutput(self.dut)
> > -        if self.nic in ["niantic", "fortville_eagle",
> "fortville_spirit", "fortville_spirit_single", "redrockcanyou", "ironpond",
> "twinpond", "springfountain"]:
> > +        if self.nic in ["niantic", "sageville", "fortpark",
> "fortville_eagle", "fortville_spirit", "fortville_spirit_single",
> "redrockcanyou", "ironpond", "twinpond", "springfountain"]:
> >               self.mbsize = 2048
> >           else:
> >               self.mbsize = 1024

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

end of thread, other threads:[~2015-11-18  3:03 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-17  9:18 [dts] [DTS][PATCH] add sageville and fortpark in settings add sageville and fortpark support in scatter suite Jingguo Fu
2015-11-18  1:35 ` Liu, Yong
2015-11-18  2:14   ` Fu, JingguoX
2015-11-18  3:03     ` Liu, Yong

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).