From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 45AED6787 for ; Tue, 27 Oct 2015 08:41:17 +0100 (CET) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga103.jf.intel.com with ESMTP; 27 Oct 2015 00:41:16 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.20,203,1444719600"; d="scan'208";a="672503279" Received: from unknown (HELO dpdk-fedora20.icx.intel.com) ([10.238.55.12]) by orsmga003.jf.intel.com with ESMTP; 27 Oct 2015 00:41:16 -0700 From: "xu,huilong" To: dts@dpdk.org Date: Tue, 27 Oct 2015 15:36:41 +0800 Message-Id: <1445931412-86352-2-git-send-email-huilongx.xu@intel.com> X-Mailer: git-send-email 1.9.3 In-Reply-To: <1445931412-86352-1-git-send-email-huilongx.xu@intel.com> References: <1445931412-86352-1-git-send-email-huilongx.xu@intel.com> Subject: [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 07:41:17 -0000 Signed-off-by: xu,huilong --- tests/TestSuite_unit_tests_cmdline.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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. """ - self.dut.send_expect("./app/test/test -n 1 -c ffff", "R.*T.*E.*>.*>", 10) - out = self.dut.send_expect("cmdline_autotest", "RTE>>", 10) + self.dut.send_expect("./app/test/test -n 1 -c ffff", "R.*T.*E.*>.*>", 60) + out = self.dut.send_expect("cmdline_autotest", "RTE>>", 60) self.dut.send_expect("quit", "# ") self.verify("Test OK" in out, "Test failed") return 'SUCCESS' -- 1.9.3