From patchwork Wed Dec 28 09:16:04 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Ling, WeiX" X-Patchwork-Id: 121444 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id AEAC7A04FD; Wed, 28 Dec 2022 10:25:49 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id AA96D410D0; Wed, 28 Dec 2022 10:25:49 +0100 (CET) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mails.dpdk.org (Postfix) with ESMTP id 7D1AF410D0 for ; Wed, 28 Dec 2022 10:25:46 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1672219546; x=1703755546; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=xNuztrcV5zTA3Weoc9zg7ql+gGIHO+Dpf/qYmpjN+Zo=; b=CuORa1iGuMe0mTOdD1ktkqcqCldYjeQkKF2UGypmzNHd4ISj3KrP+J0x LN2RMGa2bk85OVZz8+WjWWiQySMhgjPWLBlrCRdbFi3xqtU9PL/wEH9Pt tW05e0KIwcyMu7t6yT1/FadNyAEJoVO+5hbnEmIv7v8FOzxmU5osYbstg wxWopsh/K+wr1eJF2c5apGjtWa/ohBR+wX4cBVVQgvcLTXXeBOk1bv04T 2NGML36oFy78uGVBpAvYadxpmVlagJyhi2Y5K2f4mwEzFEoyMra4UGi0G h9Uo7ODOdk/CvHHcxeko+pjeAbBieSEudE1LIxoFqJNflrvqLzWQ7hxbi Q==; X-IronPort-AV: E=McAfee;i="6500,9779,10573"; a="300532957" X-IronPort-AV: E=Sophos;i="5.96,280,1665471600"; d="scan'208";a="300532957" Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Dec 2022 01:25:34 -0800 X-IronPort-AV: E=McAfee;i="6500,9779,10573"; a="777390736" X-IronPort-AV: E=Sophos;i="5.96,280,1665471600"; d="scan'208";a="777390736" Received: from unknown (HELO localhost.localdomain) ([10.239.252.222]) by orsmga004-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Dec 2022 01:25:32 -0800 From: Wei Ling To: dts@dpdk.org Cc: Wei Ling Subject: [dts][PATCH V1 2/2] tests/virtio_event_idx_interrupt_cbdma: modify case1&3 rerun times from 10 to 100 Date: Wed, 28 Dec 2022 17:16:04 +0800 Message-Id: <20221228091604.3623642-1-weix.ling@intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.29 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 Modify case1&3 rerun times from 10 to 100. Signed-off-by: Wei Ling --- tests/TestSuite_virtio_event_idx_interrupt_cbdma.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/TestSuite_virtio_event_idx_interrupt_cbdma.py b/tests/TestSuite_virtio_event_idx_interrupt_cbdma.py index 20919131..a3431827 100644 --- a/tests/TestSuite_virtio_event_idx_interrupt_cbdma.py +++ b/tests/TestSuite_virtio_event_idx_interrupt_cbdma.py @@ -279,7 +279,7 @@ class TestVirtioIdxInterruptCbdma(TestCase): self.queues = 1 self.start_vms(packed=False) self.config_virito_net_in_vm() - res = self.check_packets_after_reload_virtio_device(reload_times=10) + res = self.check_packets_after_reload_virtio_device(reload_times=100) self.verify(res is True, "Should increase the wait times of ixia") self.stop_all_apps() @@ -406,7 +406,7 @@ class TestVirtioIdxInterruptCbdma(TestCase): self.queues = 1 self.start_vms(packed=True) self.config_virito_net_in_vm() - res = self.check_packets_after_reload_virtio_device(reload_times=10) + res = self.check_packets_after_reload_virtio_device(reload_times=100) self.verify(res is True, "Should increase the wait times of ixia") self.stop_all_apps()