From: lihong <lihongx.ma@intel.com> To: dts@dpdk.org Cc: zhaoyan.chen@intel.com, lihong <lihongx.ma@intel.com> Subject: [dts] [PATCH V1 1/7] executions: add build_type field in all executions cfg Date: Tue, 7 Jul 2020 10:44:57 +0800 Message-ID: <1594089903-26285-2-git-send-email-lihongx.ma@intel.com> (raw) In-Reply-To: <1594089903-26285-1-git-send-email-lihongx.ma@intel.com> Signed-off-by: lihong <lihongx.ma@intel.com> --- executions/execution.cfg | 2 ++ executions/execution_FVL.cfg | 2 ++ executions/execution_fm10k.cfg | 2 ++ executions/execution_rxmode.cfg | 3 +++ executions/execution_smoke.cfg | 1 + 5 files changed, 10 insertions(+) diff --git a/executions/execution.cfg b/executions/execution.cfg index 0683d74..0a1ac3c 100644 --- a/executions/execution.cfg +++ b/executions/execution.cfg @@ -1,6 +1,7 @@ [Execution1] crbs=<CRB IP Address> drivername=<driver name igb_uio or vfio-pci or mlx5_core or uio_pci_generic> +build_type=<makefile or meson> test_suites= cmdline, hello_world, @@ -35,6 +36,7 @@ parameters=nic_type=cfg:func=true [Execution2] crbs=<Performance CRB IP Address> drivername=<driver name igb_uio or vfio-pci> +build_type=<makefile or meson> test_suites= l2fwd, l3fwd, diff --git a/executions/execution_FVL.cfg b/executions/execution_FVL.cfg index d5e6cfb..84c1649 100644 --- a/executions/execution_FVL.cfg +++ b/executions/execution_FVL.cfg @@ -1,6 +1,7 @@ [Execution1] crbs=<CRB IP Address> drivername=<driver name igb_uio or vfio-pci or mlx5_core or uio_pci_generic> +build_type=<makefile or meson> test_suites= checksum_offload, dynamic_config, @@ -36,6 +37,7 @@ parameters=nic_type=cfg:func=true [Execution2] crbs=<Performance CRB IP Address> drivername=<driver name igb_uio or vfio-pci> +build_type=<makefile or meson> test_suites= l2fwd, l3fwd, diff --git a/executions/execution_fm10k.cfg b/executions/execution_fm10k.cfg index 971e4a4..dbd2b96 100644 --- a/executions/execution_fm10k.cfg +++ b/executions/execution_fm10k.cfg @@ -1,6 +1,7 @@ [Execution1] crbs=<CRB IP Address> drivername=<driver name igb_uio or vfio-pci or uio_pci_generic> +build_type=<makefile or meson> test_suites= checksum_offload, vlan, @@ -19,6 +20,7 @@ parameters=nic_type=cfg:func=true [Execution2] crbs=<Performance CRB IP Address> drivername=<driver name igb_uio or vfio-pci> +build_type=<makefile or meson> test_suites= l3fwd, targets= diff --git a/executions/execution_rxmode.cfg b/executions/execution_rxmode.cfg index cf46dbf..e1bf981 100644 --- a/executions/execution_rxmode.cfg +++ b/executions/execution_rxmode.cfg @@ -2,6 +2,7 @@ crbs=<CRB IP Address> drivername=igb_uio rx_mode=scalar +build_type=<makefile or meson> test_suites= fdir, jumboframes, @@ -23,6 +24,7 @@ parameters=nic_type=cfg:func=true crbs=<CRB IP Address> drivername=igb_uio rx_mode=full +build_type=<makefile or meson> test_suites= fdir, jumboframes, @@ -44,6 +46,7 @@ parameters=nic_type=cfg:func=true crbs=<CRB IP Address> drivername=igb_uio rx_mode=vector +build_type=<makefile or meson> test_suites= fdir, jumboframes, diff --git a/executions/execution_smoke.cfg b/executions/execution_smoke.cfg index f069365..ea5bd3f 100644 --- a/executions/execution_smoke.cfg +++ b/executions/execution_smoke.cfg @@ -1,6 +1,7 @@ [Execution1] crbs=<CRB IP Address> drivername=<driver name igb_uio or vfio-pci or mlx5_core or uio_pci_generic> +build_type=<makefile or meson> test_suites= unit_tests_cmdline, unit_tests_eal, -- 2.7.4
next prev parent reply other threads:[~2020-07-07 10:16 UTC|newest] Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top 2020-07-07 2:44 [dts] [PATCH V1 0/7] meson build reference lihong 2020-07-07 2:44 ` lihong [this message] 2020-07-07 2:44 ` [dts] [PATCH V1 2/7] conf: add configuration file of app_name.cfg lihong 2020-07-07 2:44 ` [dts] [PATCH V1 3/7] framework/config: get configuration information from app_name.cfg lihong 2020-07-07 2:45 ` [dts] [PATCH V1 4/7] framework: read and save the build_type from execution.cfg lihong 2020-07-07 2:45 ` [dts] [PATCH V1 5/7] framework: add meson build method and get apps name of current build type lihong 2020-07-07 2:45 ` [dts] [PATCH V1 6/7] framework/pmd_output: replace the hard code app path with the configured app path lihong 2020-07-07 2:45 ` [dts] [PATCH V1 7/7] tests: " lihong 2020-07-07 10:20 ` [dts] [PATCH V1 0/7] meson build reference Xiao, QimaiX 2020-07-20 7:08 ` Tu, Lijuan
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=1594089903-26285-2-git-send-email-lihongx.ma@intel.com \ --to=lihongx.ma@intel.com \ --cc=dts@dpdk.org \ --cc=zhaoyan.chen@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
test suite reviews and discussions This inbox may be cloned and mirrored by anyone: git clone --mirror http://inbox.dpdk.org/dts/0 dts/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 dts dts/ http://inbox.dpdk.org/dts \ dts@dpdk.org public-inbox-index dts Example config snippet for mirrors. Newsgroup available over NNTP: nntp://inbox.dpdk.org/inbox.dpdk.dts AGPL code for this site: git clone https://public-inbox.org/public-inbox.git