From: "Liu, Yong" <yong.liu@intel.com>
To: "Xu, HuilongX" <huilongx.xu@intel.com>, "dts@dpdk.org" <dts@dpdk.org>
Subject: Re: [dts] [dts 1/3] [PATCH V2] add generic filter test for niantic and fortville nic test
Date: Mon, 1 Jun 2015 09:02:24 +0000 [thread overview]
Message-ID: <86228AFD5BCD8E4EBFD2B90117B5E81E10E366C7@SHSMSX103.ccr.corp.intel.com> (raw)
In-Reply-To: <1432621918-18883-1-git-send-email-huilongx.xu@intel.com>
Thanks, applied in 1.1 branch.
> -----Original Message-----
> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of huilong,xu
> Sent: Tuesday, May 26, 2015 2:32 PM
> To: dts@dpdk.org
> Subject: [dts] [dts 1/3] [PATCH V2] add generic filter test for niantic
> and fortville nic test
>
> From: huilong xu <huilongx.xu@intel.com>
>
>
> Signed-off-by: huilong xu <huilongx.xu@intel.com>
> ---
> execution.cfg | 34 ----------------------------------
> execution_FVL.cfg | 20 --------------------
> executions/execution.cfg | 35 +++++++++++++++++++++++++++++++++++
> executions/execution_FVL.cfg | 21 +++++++++++++++++++++
> 4 files changed, 56 insertions(+), 54 deletions(-)
> delete mode 100644 execution.cfg
> delete mode 100644 execution_FVL.cfg
> create mode 100644 executions/execution.cfg
> create mode 100644 executions/execution_FVL.cfg
>
> diff --git a/execution.cfg b/execution.cfg
> deleted file mode 100644
> index 3d38026..0000000
> --- a/execution.cfg
> +++ /dev/null
> @@ -1,34 +0,0 @@
> -[Execution1]
> -crbs=<CRB IP Address>
> -drivername=<driver name igb_uio or vfio-pci>
> -test_suites=
> - cmdline,
> - hello_world,
> - multiprocess,
> - timer,
> - blacklist,
> - whitelist,
> - ieee1588,
> - checksum_offload,
> - jumboframes,
> - ipfrag,
> - link_flowctrl,
> - fdir,
> - vlan,
> - ip_pipeline,
> - pmd_bonded,
> - dynamic_config
> -targets=
> - x86_64-native-linuxapp-gcc
> -parameters=nic_type=cfg:func=true
> -
> -[Execution2]
> -crbs=<Performance CRB IP Address>
> -drivername=<driver name igb_uio or vfio-pci>
> -test_suites=
> - l2fwd,
> - l3fwd,
> - pmd
> -targets=
> - x86_64-native-linuxapp-gcc
> -parameters=nic_type=niantic:perf=true
> diff --git a/execution_FVL.cfg b/execution_FVL.cfg
> deleted file mode 100644
> index c57f33d..0000000
> --- a/execution_FVL.cfg
> +++ /dev/null
> @@ -1,20 +0,0 @@
> -[Execution1]
> -crbs=<CRB IP Address>
> -drivername=<driver name igb_uio or vfio-pci>
> -test_suites=
> - checksum_offload,
> - dynamic_config
> -targets=
> - x86_64-native-linuxapp-gcc
> -parameters=nic_type=cfg:func=true
> -
> -[Execution2]
> -crbs=<Performance CRB IP Address>
> -drivername=<driver name igb_uio or vfio-pci>
> -test_suites=
> - l2fwd,
> - l3fwd,
> - pmd
> -targets=
> - x86_64-native-linuxapp-gcc
> -parameters=nic_type=niantic:perf=true
> diff --git a/executions/execution.cfg b/executions/execution.cfg
> new file mode 100644
> index 0000000..73d70f6
> --- /dev/null
> +++ b/executions/execution.cfg
> @@ -0,0 +1,35 @@
> +[Execution1]
> +crbs=<CRB IP Address>
> +drivername=<driver name igb_uio or vfio-pci>
> +test_suites=
> + cmdline,
> + hello_world,
> + multiprocess,
> + timer,
> + blacklist,
> + whitelist,
> + ieee1588,
> + checksum_offload,
> + jumboframes,
> + ipfrag,
> + link_flowctrl,
> + fdir,
> + vlan,
> + ip_pipeline,
> + pmd_bonded,
> + dynamic_config,
> + generic_filter
> +targets=
> + x86_64-native-linuxapp-gcc
> +parameters=nic_type=cfg:func=true
> +
> +[Execution2]
> +crbs=<Performance CRB IP Address>
> +drivername=<driver name igb_uio or vfio-pci>
> +test_suites=
> + l2fwd,
> + l3fwd,
> + pmd
> +targets=
> + x86_64-native-linuxapp-gcc
> +parameters=nic_type=niantic:perf=true
> diff --git a/executions/execution_FVL.cfg b/executions/execution_FVL.cfg
> new file mode 100644
> index 0000000..7e5151b
> --- /dev/null
> +++ b/executions/execution_FVL.cfg
> @@ -0,0 +1,21 @@
> +[Execution1]
> +crbs=<CRB IP Address>
> +drivername=<driver name igb_uio or vfio-pci>
> +test_suites=
> + checksum_offload,
> + dynamic_config,
> + generic_filter
> +targets=
> + x86_64-native-linuxapp-gcc
> +parameters=nic_type=cfg:func=true
> +
> +[Execution2]
> +crbs=<Performance CRB IP Address>
> +drivername=<driver name igb_uio or vfio-pci>
> +test_suites=
> + l2fwd,
> + l3fwd,
> + pmd
> +targets=
> + x86_64-native-linuxapp-gcc
> +parameters=nic_type=niantic:perf=true
> --
> 1.7.4.4
prev parent reply other threads:[~2015-06-01 9:02 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-05-26 6:31 huilong,xu
2015-05-26 6:31 ` [dts] [dts 2/3] [PATCH V2] add generic filter test plan huilong,xu
2015-05-26 6:31 ` [dts] [dts 3/3] [PATCH V2] add generic filter test case huilong,xu
2015-06-01 9:02 ` Liu, Yong [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=86228AFD5BCD8E4EBFD2B90117B5E81E10E366C7@SHSMSX103.ccr.corp.intel.com \
--to=yong.liu@intel.com \
--cc=dts@dpdk.org \
--cc=huilongx.xu@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).