From: Lingli Chen <linglix.chen@intel.com> To: dts@dpdk.org Cc: Lingli Chen <linglix.chen@intel.com> Subject: [dts][PATCH V2] tests/multiprocess: modify dut to build examples/multi_process together Date: Sat, 7 May 2022 10:09:24 +0000 Message-ID: <20220507100924.18008-1-linglix.chen@intel.com> (raw) on Fedora35 and RHEL dut build dpdk app symmetric_mp will replace simple_mp, so not found simple_mp. Solution: dut build dpdk app together. Signed-off-by: Lingli Chen <linglix.chen@intel.com> --- v2:modify dut to build examples/multi_process together v1:modify dut build dpdk app all tests/TestSuite_multiprocess.py | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/tests/TestSuite_multiprocess.py b/tests/TestSuite_multiprocess.py index 33c13022..79744722 100644 --- a/tests/TestSuite_multiprocess.py +++ b/tests/TestSuite_multiprocess.py @@ -60,20 +60,8 @@ class TestMultiprocess(TestCase): self.verify(len(self.dut.get_all_cores()) >= 4, "Not enough Cores") 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") - + extra_option = "-Dexamples='multi_process/client_server_mp/mp_server,multi_process/client_server_mp/mp_client,multi_process/simple_mp,multi_process/symmetric_mp'" + self.dut.build_install_dpdk(target=self.target, extra_options=extra_option) 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
next reply other threads:[~2022-05-07 1:46 UTC|newest] Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top 2022-05-07 10:09 Lingli Chen [this message] 2022-05-09 7:41 ` lijuan.tu
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=20220507100924.18008-1-linglix.chen@intel.com \ --to=linglix.chen@intel.com \ --cc=dts@dpdk.org \ /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