From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 1F7DB5A76 for ; Tue, 27 Oct 2015 09:29:30 +0100 (CET) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by orsmga102.jf.intel.com with ESMTP; 27 Oct 2015 01:29:31 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.20,204,1444719600"; d="scan'208";a="588755914" Received: from fmsmsx104.amr.corp.intel.com ([10.18.124.202]) by FMSMGA003.fm.intel.com with ESMTP; 27 Oct 2015 01:29:29 -0700 Received: from fmsmsx156.amr.corp.intel.com (10.18.116.74) by fmsmsx104.amr.corp.intel.com (10.18.124.202) with Microsoft SMTP Server (TLS) id 14.3.248.2; Tue, 27 Oct 2015 01:29:29 -0700 Received: from shsmsx151.ccr.corp.intel.com (10.239.6.50) by fmsmsx156.amr.corp.intel.com (10.18.116.74) with Microsoft SMTP Server (TLS) id 14.3.248.2; Tue, 27 Oct 2015 01:29:29 -0700 Received: from shsmsx102.ccr.corp.intel.com ([169.254.2.253]) by SHSMSX151.ccr.corp.intel.com ([169.254.3.47]) with mapi id 14.03.0248.002; Tue, 27 Oct 2015 16:29:27 +0800 From: "Tu, LijuanX A" To: "Xu, HuilongX" , "dts@dpdk.org" Thread-Topic: [dts] [01/12] add test start time and exec cmd time for cmdline unit test Thread-Index: AQHREIrzypeUVovi6kGN9Wb+/bPh155/AgCw Date: Tue, 27 Oct 2015 08:29:27 +0000 Message-ID: <38D041F150D4184C8114E499040E623407235926@shsmsx102.ccr.corp.intel.com> References: <1445931412-86352-1-git-send-email-huilongx.xu@intel.com> <1445931412-86352-2-git-send-email-huilongx.xu@intel.com> In-Reply-To: <1445931412-86352-2-git-send-email-huilongx.xu@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] [01/12] add test start time and exec cmd time for cmdline unit test 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: Tue, 27 Oct 2015 08:29:31 -0000 Acked by tu,lijuan > Signed-off-by: xu,huilong > --- > tests/TestSuite_unit_tests_cmdline.py | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) >=20 > diff --git a/tests/TestSuite_unit_tests_cmdline.py b/tests/TestSuite_unit= _tests_cmdline.py > index b3a1769..3ece175 100644 > --- a/tests/TestSuite_unit_tests_cmdline.py > +++ b/tests/TestSuite_unit_tests_cmdline.py > @@ -70,8 +70,8 @@ class TestUnitTestsCmdline(TestCase): > Run cmdline autotests in RTE comand line. > """ > =20 > - self.dut.send_expect("./app/test/test -n 1 -c ffff", "R.*T.*E.*>= .*>", 10) > - out =3D self.dut.send_expect("cmdline_autotest", "RTE>>", 10) > + self.dut.send_expect("./app/test/test -n 1 -c ffff", "R.*T.*E.*>= .*>", 60) > + out =3D self.dut.send_expect("cmdline_autotest", "RTE>>", 60) > self.dut.send_expect("quit", "# ") > self.verify("Test OK" in out, "Test failed") > return 'SUCCESS' > --=20 >