From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 80BFFA0471 for ; Tue, 13 Aug 2019 11:08:01 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 5095E1B13C; Tue, 13 Aug 2019 11:08:01 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 2F0485681 for ; Tue, 13 Aug 2019 11:07:57 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 13 Aug 2019 01:52:58 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,380,1559545200"; d="scan'208";a="194152068" Received: from unknown (HELO dpdk-wenjielx-KVM193.icx.intel.com) ([10.240.176.193]) by fmsmga001.fm.intel.com with ESMTP; 13 Aug 2019 01:52:57 -0700 From: Wenjie Li To: dts@dpdk.org Cc: Wenjie Li Date: Tue, 13 Aug 2019 17:44:08 +0000 Message-Id: <1565718248-7920-1-git-send-email-wenjiex.a.li@intel.com> X-Mailer: git-send-email 1.9.3 Subject: [dts] [PATCH V1] tests/tso: tcpdump takes more time 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: , Errors-To: dts-bounces@dpdk.org Sender: "dts" on some platforms, tcpdump(scanner) takes more time, set the timeout threshold to 30s. Signed-off-by: Wenjie Li --- tests/TestSuite_tso.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_tso.py b/tests/TestSuite_tso.py index 36e00fe..4faf266 100644 --- a/tests/TestSuite_tso.py +++ b/tests/TestSuite_tso.py @@ -153,7 +153,7 @@ class TestTSO(TestCase): """ Execute scanner to return results """ - scanner_result = self.tester.send_expect(scanner, '#') + scanner_result = self.tester.send_expect(scanner, '#', 30) fially_result = re.findall(r'length( \d+)', scanner_result) return list(fially_result) -- 2.17.1