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 8EF6C1B35D for ; Tue, 30 Jan 2018 08:13:11 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 29 Jan 2018 23:13:10 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.46,433,1511856000"; d="scan'208";a="15436915" Received: from unknown (HELO dpdk-fedora20.icx.intel.com) ([10.240.176.135]) by fmsmga002.fm.intel.com with ESMTP; 29 Jan 2018 23:13:09 -0800 From: "lu,peipei" To: dts@dpdk.org Cc: "lu,peipei" Date: Tue, 30 Jan 2018 15:14:23 +0800 Message-Id: <1517296463-35565-1-git-send-email-peipeix.lu@intel.com> X-Mailer: git-send-email 1.9.3 Subject: [dts] [PATCH V1] framework/packet: fix netmap_compat and rxtx_callbacksfailed on i350 and sagepond 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, 30 Jan 2018 07:13:11 -0000 i350 and sagepond need additional timeout about netmap_compat and rxtx_callbacksfailed cases Signed-off-by: lu,peipei --- framework/packet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/packet.py b/framework/packet.py index 908e855..976b82b 100755 --- a/framework/packet.py +++ b/framework/packet.py @@ -855,7 +855,7 @@ def sniff_packets(intf, count=0, timeout=5, filters=[]): pipe = subprocess.Popen(args) index = str(time.time()) SNIFF_PIDS[index] = (pipe, intf, timeout) - time.sleep(0.5) + time.sleep(1) return index -- 1.9.3