From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id D8E86201 for ; Wed, 28 Dec 2016 03:17:12 +0100 (CET) Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga101.jf.intel.com with ESMTP; 27 Dec 2016 18:17:11 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,419,1477983600"; d="scan'208";a="43895274" Received: from fmsmsx104.amr.corp.intel.com ([10.18.124.202]) by orsmga004.jf.intel.com with ESMTP; 27 Dec 2016 18:17:11 -0800 Received: from FMSMSX109.amr.corp.intel.com (10.18.116.9) by fmsmsx104.amr.corp.intel.com (10.18.124.202) with Microsoft SMTP Server (TLS) id 14.3.248.2; Tue, 27 Dec 2016 18:17:11 -0800 Received: from shsmsx101.ccr.corp.intel.com (10.239.4.153) by fmsmsx109.amr.corp.intel.com (10.18.116.9) with Microsoft SMTP Server (TLS) id 14.3.248.2; Tue, 27 Dec 2016 18:17:10 -0800 Received: from shsmsx103.ccr.corp.intel.com ([169.254.4.20]) by SHSMSX101.ccr.corp.intel.com ([169.254.1.177]) with mapi id 14.03.0248.002; Wed, 28 Dec 2016 10:17:09 +0800 From: "Liu, Yong" To: "Xu, GangX" , "dts@dpdk.org" CC: "Xu, GangX" Thread-Topic: [dts] [PATCH V1] fix timeout on FreeBSD error Thread-Index: AQHSX2RezNq75sYKZUeN2dhbSZlq4aEcofng Date: Wed, 28 Dec 2016 02:17:08 +0000 Message-ID: <86228AFD5BCD8E4EBFD2B90117B5E81E62D32BC2@SHSMSX103.ccr.corp.intel.com> References: <1482748810-13580-1-git-send-email-gangx.xu@intel.com> In-Reply-To: <1482748810-13580-1-git-send-email-gangx.xu@intel.com> Accept-Language: zh-CN, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiNjE1ZTdlNjQtOTMwNy00OTIwLWFiMGUtMmU0NDVlZTkxOWE1IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6InNtMnJ0ZTd0dkNmOEVXXC9ieXRrNTEwTW0wNmVTblFqN1k0dDEwZUR2TndRPSJ9 x-ctpclassification: CTP_IC 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] fix timeout on FreeBSD error 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: Wed, 28 Dec 2016 02:17:13 -0000 Gang, one comment for your patch. > -----Original Message----- > From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of xu,gang > Sent: Monday, December 26, 2016 6:40 PM > To: dts@dpdk.org > Cc: Xu, GangX > Subject: [dts] [PATCH V1] fix timeout on FreeBSD error >=20 >=20 > Signed-off-by: xu,gang > --- > tests/TestSuite_unit_tests_eal.py | 2 +- > tests/TestSuite_unit_tests_mbuf.py | 2 +- > tests/TestSuite_unit_tests_mempool.py | 2 +- > 3 files changed, 3 insertions(+), 3 deletions(-) >=20 > diff --git a/tests/TestSuite_unit_tests_eal.py > b/tests/TestSuite_unit_tests_eal.py > index 8fea148..efcf34b 100644 > --- a/tests/TestSuite_unit_tests_eal.py > +++ b/tests/TestSuite_unit_tests_eal.py > @@ -282,7 +282,7 @@ class TestUnitTestsEal(TestCase): > """ >=20 > self.dut.send_expect(self.test_app_cmdline + ' -m 64', > "R.*T.*E.*>.*>", self.start_test_time) > - out =3D self.dut.send_expect("eal_flags_autotest", "RTE>>", > self.run_cmd_time) > + out =3D self.dut.send_expect("eal_flags_autotest", "RTE>>", 600) Please add some description for this change. > self.dut.send_expect("quit", "# ") > self.verify("Test OK" in out, "Test failed") >=20 > diff --git a/tests/TestSuite_unit_tests_mbuf.py > b/tests/TestSuite_unit_tests_mbuf.py > index df73e5d..5ff91ff 100644 > --- a/tests/TestSuite_unit_tests_mbuf.py > +++ b/tests/TestSuite_unit_tests_mbuf.py > @@ -69,7 +69,7 @@ class TestUnitTestsMbuf(TestCase): > """ >=20 > self.dut.send_expect("./%s/app/test -n 1 -c ffff" % self.target, > "R.*T.*E.*>.*>", 60) > - out =3D self.dut.send_expect("mbuf_autotest", "RTE>>", 60) > + out =3D self.dut.send_expect("mbuf_autotest", "RTE>>", 180) > self.dut.send_expect("quit", "# ") > self.verify("Test OK" in out, "Test failed") >=20 > diff --git a/tests/TestSuite_unit_tests_mempool.py > b/tests/TestSuite_unit_tests_mempool.py > index 70cf4f3..fcd8dd1 100644 > --- a/tests/TestSuite_unit_tests_mempool.py > +++ b/tests/TestSuite_unit_tests_mempool.py > @@ -78,7 +78,7 @@ class TestUnitTestsMempool(TestCase): > Run memory pool performance autotest. > """ > self.dut.send_expect("./%s/app/test -n 1 -c fffe" % self.target, > "R.*T.*E.*>.*>", 60) > - out =3D self.dut.send_expect("mempool_perf_autotest", "RTE>>", 7= 00) > + out =3D self.dut.send_expect("mempool_perf_autotest", "RTE>>", 8= 40) > self.dut.send_expect("quit", "# ") > self.verify("Test OK" in out, "Test failed") >=20 > -- > 1.9.3