* [dts][PATCH V1] tests/multiprocess: modify dut build dpdk app all
@ 2022-04-28 11:58 Lingli Chen
2022-04-29 2:28 ` Huang, ChenyuX
2022-05-05 6:36 ` Tu, Lijuan
0 siblings, 2 replies; 3+ messages in thread
From: Lingli Chen @ 2022-04-28 11:58 UTC (permalink / raw)
To: dts; +Cc: Lingli Chen
on Fedora35 and RHEL dut build dpdk app symmetric_mp will replace simple_mp, so not found simple_mp.
Solution: dut build dpdk app all.
Signed-off-by: Lingli Chen <linglix.chen@intel.com>
---
tests/TestSuite_multiprocess.py | 14 +-------------
1 file changed, 1 insertion(+), 13 deletions(-)
diff --git a/tests/TestSuite_multiprocess.py b/tests/TestSuite_multiprocess.py
index 33c13022..1e3ffee9 100644
--- a/tests/TestSuite_multiprocess.py
+++ b/tests/TestSuite_multiprocess.py
@@ -61,19 +61,7 @@ class TestMultiprocess(TestCase):
self.dut_ports = self.dut.get_ports()
self.socket = self.dut.get_numa_id(self.dut_ports[0])
- out = self.dut.build_dpdk_apps(
- "./examples/multi_process/client_server_mp/mp_client"
- )
- self.verify("Error" not in out, "Compilation mp_client failed")
- out = self.dut.build_dpdk_apps(
- "./examples/multi_process/client_server_mp/mp_server"
- )
- self.verify("Error" not in out, "Compilation mp_server failed")
- out = self.dut.build_dpdk_apps("./examples/multi_process/simple_mp")
- self.verify("Error" not in out, "Compilation simple_mp failed")
- out = self.dut.build_dpdk_apps("./examples/multi_process/symmetric_mp")
- self.verify("Error" not in out, "Compilation symmetric_mp failed")
-
+ self.dut.build_install_dpdk(target=self.target, extra_options="-Dexamples=all")
self.app_mp_client = self.dut.apps_name["mp_client"]
self.app_mp_server = self.dut.apps_name["mp_server"]
self.app_simple_mp = self.dut.apps_name["simple_mp"]
--
2.17.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* RE: [dts][PATCH V1] tests/multiprocess: modify dut build dpdk app all
2022-04-28 11:58 [dts][PATCH V1] tests/multiprocess: modify dut build dpdk app all Lingli Chen
@ 2022-04-29 2:28 ` Huang, ChenyuX
2022-05-05 6:36 ` Tu, Lijuan
1 sibling, 0 replies; 3+ messages in thread
From: Huang, ChenyuX @ 2022-04-29 2:28 UTC (permalink / raw)
To: Chen, LingliX, dts; +Cc: Chen, LingliX
[-- Attachment #1: Type: text/plain, Size: 315 bytes --]
> -----Original Message-----
> From: Lingli Chen <linglix.chen@intel.com>
> Sent: Thursday, April 28, 2022 7:59 PM
> To: dts@dpdk.org
> Cc: Chen, LingliX <linglix.chen@intel.com>
> Subject: [dts][PATCH V1] tests/multiprocess: modify dut build dpdk app all
Tested-by: Chenyu Huang <chenyux.huang@intel.com>
[-- Attachment #2: TestMultiprocess.log --]
[-- Type: application/octet-stream, Size: 354249 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* RE: [dts][PATCH V1] tests/multiprocess: modify dut build dpdk app all
2022-04-28 11:58 [dts][PATCH V1] tests/multiprocess: modify dut build dpdk app all Lingli Chen
2022-04-29 2:28 ` Huang, ChenyuX
@ 2022-05-05 6:36 ` Tu, Lijuan
1 sibling, 0 replies; 3+ messages in thread
From: Tu, Lijuan @ 2022-05-05 6:36 UTC (permalink / raw)
To: Chen, LingliX, dts; +Cc: Chen, LingliX
> -----Original Message-----
> From: Lingli Chen <linglix.chen@intel.com>
> Sent: 2022年4月28日 19:59
> To: dts@dpdk.org
> Cc: Chen, LingliX <linglix.chen@intel.com>
> Subject: [dts][PATCH V1] tests/multiprocess: modify dut build dpdk app all
>
> on Fedora35 and RHEL dut build dpdk app symmetric_mp will replace simple_mp, so not found simple_mp.
> Solution: dut build dpdk app all.
What's the consideration of building all examples, why not replacing simple_mp with symmetric_mp?
If you are going to build examples/multi_process together, suggest to configure:
-Dexamples='multi_process/client_server_mp/mp_server,multi_process/client_server_mp/mp_client,multi_process/hotplug_mp,multi_process/simple_mp,multi_process/symmetric_mp'
thanks
>
> Signed-off-by: Lingli Chen <linglix.chen@intel.com>
> ---
> tests/TestSuite_multiprocess.py | 14 +-------------
> 1 file changed, 1 insertion(+), 13 deletions(-)
>
> diff --git a/tests/TestSuite_multiprocess.py b/tests/TestSuite_multiprocess.py index 33c13022..1e3ffee9
> 100644
> --- a/tests/TestSuite_multiprocess.py
> +++ b/tests/TestSuite_multiprocess.py
> @@ -61,19 +61,7 @@ class TestMultiprocess(TestCase):
> self.dut_ports = self.dut.get_ports()
> self.socket = self.dut.get_numa_id(self.dut_ports[0])
>
> - out = self.dut.build_dpdk_apps(
> - "./examples/multi_process/client_server_mp/mp_client"
> - )
> - self.verify("Error" not in out, "Compilation mp_client failed")
> - out = self.dut.build_dpdk_apps(
> - "./examples/multi_process/client_server_mp/mp_server"
> - )
> - self.verify("Error" not in out, "Compilation mp_server failed")
> - out = self.dut.build_dpdk_apps("./examples/multi_process/simple_mp")
> - self.verify("Error" not in out, "Compilation simple_mp failed")
> - out = self.dut.build_dpdk_apps("./examples/multi_process/symmetric_mp")
> - self.verify("Error" not in out, "Compilation symmetric_mp failed")
> -
> + self.dut.build_install_dpdk(target=self.target,
> + extra_options="-Dexamples=all")
> self.app_mp_client = self.dut.apps_name["mp_client"]
> self.app_mp_server = self.dut.apps_name["mp_server"]
> self.app_simple_mp = self.dut.apps_name["simple_mp"]
> --
> 2.17.1
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-05-05 6:38 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-28 11:58 [dts][PATCH V1] tests/multiprocess: modify dut build dpdk app all Lingli Chen
2022-04-29 2:28 ` Huang, ChenyuX
2022-05-05 6:36 ` Tu, Lijuan
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