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 83ACDA04B3; Sat, 4 Jan 2020 16:03:52 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 3233C1C23E; Sat, 4 Jan 2020 16:03:52 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id B59591C229 for ; Sat, 4 Jan 2020 16:03:50 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga101.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 04 Jan 2020 07:03:48 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.69,395,1571727600"; d="scan'208";a="214744677" Received: from dpdk-lunannan-dev1.sh.intel.com ([10.67.119.144]) by orsmga008.jf.intel.com with ESMTP; 04 Jan 2020 07:03:47 -0800 From: Nannan Lu To: dts@dpdk.org Cc: Nannan Lu Date: Sat, 4 Jan 2020 22:51:01 +0000 Message-Id: <20200104225101.26231-1-nannan.lu@intel.com> X-Mailer: git-send-email 2.17.1 Subject: [dts] [PATCH V1] tests/cvl_switch_filter: fix the time out error 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" extend the wait time of launching testpmd and creating 16K fdir rules in non-pipeline mode. Signed-off-by: Nannan Lu --- tests/TestSuite_cvl_switch_filter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_cvl_switch_filter.py b/tests/TestSuite_cvl_switch_filter.py index 35a981e..5233875 100644 --- a/tests/TestSuite_cvl_switch_filter.py +++ b/tests/TestSuite_cvl_switch_filter.py @@ -2337,7 +2337,7 @@ class SwitchFilterTest(TestCase): global test_results - out = self.dut.send_expect(command, "testpmd> ", 120) + out = self.dut.send_expect(command, "testpmd> ", 300) self.dut.send_expect("port config 0 rss-hash-key ipv4 1234abcd1234abcd1234abcd1234abcd1234abcd1234abcd1234abcd1234abcd1234abcd1234abcd1234abcd1234abcd1234abcd", "testpmd> ", 15) if is_vxlan: self.dut.send_expect("rx_vxlan_port add 4789 0", "testpmd> ", 15) -- 2.17.1