From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 377511E2F for ; Fri, 28 Dec 2018 06:32:59 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 27 Dec 2018 21:32:58 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.56,408,1539673200"; d="scan'208";a="307183613" Received: from fmsmsx104.amr.corp.intel.com ([10.18.124.202]) by fmsmga005.fm.intel.com with ESMTP; 27 Dec 2018 21:32:57 -0800 Received: from fmsmsx111.amr.corp.intel.com (10.18.116.5) by fmsmsx104.amr.corp.intel.com (10.18.124.202) with Microsoft SMTP Server (TLS) id 14.3.408.0; Thu, 27 Dec 2018 21:32:56 -0800 Received: from shsmsx151.ccr.corp.intel.com (10.239.6.50) by fmsmsx111.amr.corp.intel.com (10.18.116.5) with Microsoft SMTP Server (TLS) id 14.3.408.0; Thu, 27 Dec 2018 21:32:56 -0800 Received: from shsmsx102.ccr.corp.intel.com ([169.254.2.63]) by SHSMSX151.ccr.corp.intel.com ([169.254.3.160]) with mapi id 14.03.0415.000; Fri, 28 Dec 2018 13:32:54 +0800 From: "Zhu, WenhuiX" To: "Wu, ChangqingX" , "dts@dpdk.org" CC: "Wu, ChangqingX" Thread-Topic: [dts] [PATCH V1] tests/add TestSuite sample built.py Thread-Index: AQHUnbgQIksVmNDjzEidYFQixcQNI6WTc1Aw Date: Fri, 28 Dec 2018 05:32:54 +0000 Message-ID: References: <1545896385-7744-1-git-send-email-changqingx.wu@intel.com> In-Reply-To: <1545896385-7744-1-git-send-email-changqingx.wu@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dts] [PATCH V1] tests/add TestSuite sample built.py X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Dec 2018 05:32:59 -0000 Tested-by: Zhu, WenhuiX -----Original Message----- From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of changqingxwu Sent: Thursday, December 27, 2018 3:40 PM To: dts@dpdk.org Cc: Wu, ChangqingX Subject: [dts] [PATCH V1] tests/add TestSuite sample built.py tests/add TestSuite sample built Signed-off-by: changqingxwu --- tests/TestSuite_sample_built.py | 87 +++++++++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 tests/TestSuite_sample_built.py diff --git a/tests/TestSuite_sample_built.py b/tests/TestSuite_sample_built= .py new file mode 100644 index 0000000..dc80549 --- /dev/null +++ b/tests/TestSuite_sample_built.py @@ -0,0 +1,87 @@ +#BSD LICENSE +# +# Copyright(c) 2010-2017 Intel Corporation. All rights reserved. +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without #=20 +modification, are permitted provided that the following conditions #=20 +are met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in +# the documentation and/or other materials provided with the +# distribution. +# * Neither the name of Intel Corporation nor the names of its +# contributors may be used to endorse or promote products derived +# from this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS #=20 +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT #=20 +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR #=20 +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT #=20 +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, #=20 +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT #=20 +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, #=20 +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY #=20 +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT #=20 +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE #=20 +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +""" +DPDK Test suite. +Test sample_built. +""" + +import utils +import string +import time +import re +from test_case import TestCase + +class TestSamplebuilt(TestCase): + + def set_up_all(self): + """ + Run at the start of each test suite. + """ + pass + def set_up(self): + """ + Run before each test case. + """ + pass + + def test_sample_built(self): + """ + Verify applications were compiled successfully + """ + verify_info =3D ['error','Stop','terminate','No such file'] + examples =3D self.dut.send_expect("ls examples/","#",60) + samples =3D examples.split() + samples.remove('Makefile') + samples.remove('meson.build') + results =3D [] + for sample in samples: + if 'l2fwd-cat' =3D=3D sample: + self.dut.send_expect('export PQOS_INSTALL_PATH=3D/root/int= el-cmt-cat-master/lib','#',60) + out =3D self.dut.build_dpdk_apps("./examples/%s" % sample) + for info in verify_info: + if info in out: + results.append(sample) + results =3D list(set(results)) + self.verify(results =3D=3D [], "sample built failed %s" % results) + + def tear_down(self): + """ + Run after each test case. + """ + pass + + def tear_down_all(self): + """ + Run after each test suite. + """ + pass \ No newline at end of file -- 2.17.2