From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 175F75937 for ; Thu, 21 Jan 2016 06:57:07 +0100 (CET) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga104.fm.intel.com with ESMTP; 20 Jan 2016 21:57:07 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.22,324,1449561600"; d="scan'208";a="865197800" Received: from unknown (HELO dpdk-fedora20.icx.intel.com) ([10.238.55.12]) by orsmga001.jf.intel.com with ESMTP; 20 Jan 2016 21:57:08 -0800 From: haifeng To: dts@dpdk.org Date: Thu, 21 Jan 2016 13:52:43 +0800 Message-Id: <1453355563-3315-1-git-send-email-haifengx.tang@intel.com> X-Mailer: git-send-email 1.9.3 Subject: [dts] [PATCH][DTS] as dut generate many big coredump files , backup them may take more 15s, so upgrade the timeout threshold 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: Thu, 21 Jan 2016 05:57:08 -0000 Signed-off-by: haifeng --- framework/project_dpdk.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/project_dpdk.py b/framework/project_dpdk.py index 597982f..36833a3 100644 --- a/framework/project_dpdk.py +++ b/framework/project_dpdk.py @@ -222,7 +222,7 @@ class DPDKdut(Dut): # copy the core files outside DPDK folder self.send_expect("mkdir CORE_DUMP", "#") self.send_expect("find %s/ -name core.* -exec cp {} CORE_DUMP \;" % - self.base_dir, "#") + self.base_dir, "#",30) # unpack the code and change to the working folder self.send_expect("rm -rf %s" % self.base_dir, "#") -- 1.9.3