[dts] [PATCH V1] framework/project_dpdk: add examples/all build for meson build

Ling, WeiX weix.ling at intel.com
Thu Sep 10 10:51:30 CEST 2020


Tested-by: Ling, Wei<weix.ling at intel.com>

Regards,
Ling Wei

-----Original Message-----
From: Ma, LihongX <lihongx.ma at intel.com> 
Sent: Thursday, September 10, 2020 09:13 AM
To: dts at dpdk.org
Cc: Ling, WeiX <weix.ling at intel.com>; Ma, LihongX <lihongx.ma at intel.com>
Subject: [dts][PATCH V1] framework/project_dpdk: add examples/all build for meson build

add support for build all examples in suite

Signed-off-by: LihongX Ma <lihongx.ma at intel.com>
---
 framework/project_dpdk.py | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/framework/project_dpdk.py b/framework/project_dpdk.py index b5727ef..c1b5eaf 100644
--- a/framework/project_dpdk.py
+++ b/framework/project_dpdk.py
@@ -543,18 +543,22 @@ class DPDKdut(Dut):
 
         folder_info = folder.split('/')
         name = folder_info[-1]
-        if name not in self.apps_name:
+        if name != 'examples' and name not in self.apps_name:
             raise Exception('Please config %s file path on conf/app_name.cfg' % name)
 
-        example = '/'.join(folder_info[folder_info.index('examples')+1:])
+        if name == 'examples':
+            example = 'all'
+        else:
+            example = 
+ '/'.join(folder_info[folder_info.index('examples')+1:])
         out = self.send_expect("meson configure -Dexamples=%s %s" % (example, self.target), "# ")
         assert ("FAILED" not in out), "Compilation error... \r\n %s" % out
         out = self.send_expect("ninja -C %s" % self.target, "# ", timeout)
         assert ("FAILED" not in out), "Compilation error... \r\n %s" % out
 
         # verify the app build in the config path
-        out = self.send_expect('ls %s' % self.apps_name[name], "# ", verify=True)
-        assert(isinstance(out, str)), 'please confirm %s app path and name in app_name.cfg' % name
+        if example != 'all':
+            out = self.send_expect('ls %s' % self.apps_name[name], "# ", verify=True)
+            assert(isinstance(out, str)), 'please confirm %s app path 
+ and name in app_name.cfg' % name
 
         return out
 
--
2.7.4

-------------- next part --------------
A non-text attachment was scrubbed...
Name: TestTSO.log
Type: application/octet-stream
Size: 76026 bytes
Desc: TestTSO.log
URL: <http://mails.dpdk.org/archives/dts/attachments/20200910/905fb13e/attachment.obj>


More information about the dts mailing list