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 AE46BA0471 for ; Thu, 15 Aug 2019 08:02:04 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 6C91F1BE9E; Thu, 15 Aug 2019 08:02:04 +0200 (CEST) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 5574F1BE90 for ; Thu, 15 Aug 2019 08:02:03 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 14 Aug 2019 23:02:02 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,388,1559545200"; d="scan'208";a="260731665" Received: from fmsmsx106.amr.corp.intel.com ([10.18.124.204]) by orsmga001.jf.intel.com with ESMTP; 14 Aug 2019 23:02:02 -0700 Received: from fmsmsx121.amr.corp.intel.com (10.18.125.36) by FMSMSX106.amr.corp.intel.com (10.18.124.204) with Microsoft SMTP Server (TLS) id 14.3.439.0; Wed, 14 Aug 2019 23:02:01 -0700 Received: from shsmsx104.ccr.corp.intel.com (10.239.4.70) by fmsmsx121.amr.corp.intel.com (10.18.125.36) with Microsoft SMTP Server (TLS) id 14.3.439.0; Wed, 14 Aug 2019 23:02:01 -0700 Received: from shsmsx103.ccr.corp.intel.com ([169.254.4.139]) by SHSMSX104.ccr.corp.intel.com ([169.254.5.112]) with mapi id 14.03.0439.000; Thu, 15 Aug 2019 14:01:59 +0800 From: "Li, WenjieX A" To: "dts@dpdk.org" CC: "Li, WenjieX A" Thread-Topic: [dts][PATCH V1] tests/tso: tcpdump takes more time Thread-Index: AQHVUbSEQY3JMF6MxUuKNYtGkPwcrKb7umoQ Date: Thu, 15 Aug 2019 06:01:58 +0000 Message-ID: <8688172CD5C0B74590FAE19D9579F94B53775175@SHSMSX103.ccr.corp.intel.com> References: <1565718248-7920-1-git-send-email-wenjiex.a.li@intel.com> In-Reply-To: <1565718248-7920-1-git-send-email-wenjiex.a.li@intel.com> Accept-Language: zh-CN, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [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" Tested-by: Li, WenjieX A > -----Original Message----- > From: Li, WenjieX A > Sent: Wednesday, August 14, 2019 1:44 AM > To: dts@dpdk.org > Cc: Li, WenjieX A > Subject: [dts][PATCH V1] tests/tso: tcpdump takes more time >=20 > on some platforms, tcpdump(scanner) takes more time, set the timeout > threshold to 30s. >=20 > Signed-off-by: Wenjie Li > --- > tests/TestSuite_tso.py | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) >=20 > 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 =3D self.tester.send_expect(scanner, '#') > + scanner_result =3D self.tester.send_expect(scanner, '#', 30) > fially_result =3D re.findall(r'length( \d+)', scanner_result) > return list(fially_result) >=20 > -- > 2.17.1