From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 09DC4A04B1; Wed, 23 Sep 2020 09:12:03 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id EBAB41D606; Wed, 23 Sep 2020 09:12:02 +0200 (CEST) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id 0824A1D5B2 for ; Wed, 23 Sep 2020 09:12:00 +0200 (CEST) IronPort-SDR: 4Z50XH+nERBdbj4/F0taW4yR00oTzwQrEYIfA/fuqCfyNOCRO6SRPbRgU8zrMDPwe4JnBH/tDs EPfdpuqeCMjw== X-IronPort-AV: E=McAfee;i="6000,8403,9752"; a="222396502" X-IronPort-AV: E=Sophos;i="5.77,293,1596524400"; d="scan'208";a="222396502" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 23 Sep 2020 00:12:00 -0700 IronPort-SDR: IU62ikzw9NpN5kS/mMwfAfHpQYDF0hrdBallOv7u8FfmDorfGzqUVE/wf7uzKAGxd17/7ZoCQF FiwLSam8OD2A== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,293,1596524400"; d="scan'208";a="322505567" Received: from unknown (HELO localhost.localdomain) ([10.240.183.80]) by orsmga002.jf.intel.com with ESMTP; 23 Sep 2020 00:11:58 -0700 From: Chen Linglix To: dts@dpdk.org Cc: chenlinglix Date: Wed, 23 Sep 2020 15:09:19 +0800 Message-Id: <20200923070919.22516-1-linglix.chen@intel.com> X-Mailer: git-send-email 2.17.1 Subject: [dts] [PATCH V1] tests/TestSuite_example_build:update verify_info 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: , Errors-To: dts-bounces@dpdk.org Sender: "dts" From: chenlinglix update verify_info Signed-off-by: chenlinglix --- tests/TestSuite_example_build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_example_build.py b/tests/TestSuite_example_build.py index a70e1b3..00db2f7 100644 --- a/tests/TestSuite_example_build.py +++ b/tests/TestSuite_example_build.py @@ -61,7 +61,7 @@ class TestExamplebuild(TestCase): if "No such file or directory" not in out: self.dut.send_expect('export PQOS_INSTALL_PATH=/root/intel-cmt-cat-master/lib', '#') out = self.dut.build_dpdk_apps("./examples", '#') - verify_info = ['error','Error','Stop','terminate','failed','No such file','no input files','not found','No rule'] + verify_info = ['Error','Stop','terminate','failed','No such file','no input files','not found','No rule'] for failed_info in verify_info: self.verify(failed_info not in out, "Test failed") -- 2.17.1