From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by dpdk.org (Postfix) with ESMTP id 44EC129CF for ; Mon, 18 Dec 2017 03:21:44 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga107.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 17 Dec 2017 18:21:43 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.45,419,1508828400"; d="scan'208";a="16834100" Received: from unknown (HELO dpdk-fedora20.icx.intel.com) ([10.240.176.135]) by orsmga001.jf.intel.com with ESMTP; 17 Dec 2017 18:21:42 -0800 From: "lu,peipei" To: dts@dpdk.org Cc: "lu,peipei" Date: Mon, 18 Dec 2017 10:22:56 +0800 Message-Id: <1513563776-78972-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_callbacks suit timeout failed 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: Mon, 18 Dec 2017 02:21:45 -0000 netmap_compat suit and rxtx_callbacks suit need 1.5s on centos. 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 fc9c9cc..a3f8197 100755 --- a/framework/packet.py +++ b/framework/packet.py @@ -829,7 +829,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.5) return index -- 1.9.3