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 05F9A5A59 for ; Fri, 17 Jul 2015 04:56:04 +0200 (CEST) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga102.jf.intel.com with ESMTP; 16 Jul 2015 19:56:04 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.15,492,1432623600"; d="scan'208";a="749036309" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by fmsmga001.fm.intel.com with ESMTP; 16 Jul 2015 19:56:03 -0700 Received: from shecgisg003.sh.intel.com (shecgisg003.sh.intel.com [10.239.29.90]) by shvmail01.sh.intel.com with ESMTP id t6H2u1Oh023719; Fri, 17 Jul 2015 10:56:01 +0800 Received: from shecgisg003.sh.intel.com (localhost [127.0.0.1]) by shecgisg003.sh.intel.com (8.13.6/8.13.6/SuSE Linux 0.8) with ESMTP id t6H2txdc024872; Fri, 17 Jul 2015 10:56:01 +0800 Received: (from yliu84x@localhost) by shecgisg003.sh.intel.com (8.13.6/8.13.6/Submit) id t6H2txcL024868; Fri, 17 Jul 2015 10:55:59 +0800 From: Yongjie To: dts@dpdk.org Date: Fri, 17 Jul 2015 10:55:58 +0800 Message-Id: <1437101758-24835-1-git-send-email-yongjiex.gu@intel.com> X-Mailer: git-send-email 1.7.4.1 Cc: Yongjie Subject: [dts] [PATCH] fix bug that cmdline set_up_all failed because of time out 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, 17 Jul 2015 02:56:05 -0000 Signed-off-by: Yongjie --- tests/TestSuite_cmdline.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tests/TestSuite_cmdline.py b/tests/TestSuite_cmdline.py index 7eeed2e..e1496f9 100644 --- a/tests/TestSuite_cmdline.py +++ b/tests/TestSuite_cmdline.py @@ -58,7 +58,7 @@ class TestCmdline(TestCase): # Run cmdline app cores = self.dut.get_core_list('1S/1C/1T') coreMask = dts.create_mask(cores) - self.dut.send_expect("./examples/cmdline/build/app/cmdline -n 1 -c " + coreMask, "> ", 5) + self.dut.send_expect("./examples/cmdline/build/app/cmdline -n 1 -c " + coreMask, "> ", 10) def set_up(self): """ -- 1.7.4.4