From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id C930B42854; Tue, 28 Mar 2023 09:44:04 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C449B40A87; Tue, 28 Mar 2023 09:44:04 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by mails.dpdk.org (Postfix) with ESMTP id B895542686 for ; Tue, 28 Mar 2023 09:44:02 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1679989442; x=1711525442; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=Hik9LuHED9uBc+Sn0BO99xoZ1dOQM2nz+YfHb3W7W+o=; b=hyJUs0Umj4p0YaT4o5e07YBtthn5O8zd+4347gwhAX8K5Wc6YUl1d1ml g76Hmte3zjEkZGWE4/mhZSTksFXb/epHl4GxU/dy9T/ZiJvUTmqjSyJPP tQZOyTPqLPTxt0/QHh1eOMB4ODtCs5oW6CbAFzixsotjVhb7qNbmF+oAC V2H3cgK2QkGEKDtD7SlQQ0QFWnRMu1bWVUKxdmJYhhcpdx8HHA7dS2HH6 qzjZsQ0ZhNDp2/wvD8YJMnSKRNcU5v0gaFlPyWLfLuJCQ08GoU38RCns0 kswUcccT2EW0UH4EQjRdXymKwgLh7EOeBgT9uXaL4kWPuNOG6HRARp7Yh w==; X-IronPort-AV: E=McAfee;i="6600,9927,10662"; a="342905942" X-IronPort-AV: E=Sophos;i="5.98,296,1673942400"; d="scan'208";a="342905942" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Mar 2023 00:44:02 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10662"; a="753030451" X-IronPort-AV: E=Sophos;i="5.98,296,1673942400"; d="scan'208";a="753030451" Received: from unknown (HELO localhost.localdomain) ([10.239.252.222]) by fmsmga004-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Mar 2023 00:44:01 -0700 From: Wei Ling To: dts@dpdk.org Cc: Wei Ling Subject: [dts][PATCH V1 2/2] tests/virtio_event_idx_interrupt_cbdma: modify re-run times from 100 to 10 Date: Tue, 28 Mar 2023 15:40:58 +0800 Message-Id: <20230328074058.3796087-3-weix.ling@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20230328074058.3796087-1-weix.ling@intel.com> References: <20230328074058.3796087-1-weix.ling@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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 re-run times from 100 to 10 for reduce run time. Signed-off-by: Wei Ling --- tests/TestSuite_virtio_event_idx_interrupt_cbdma.py | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/tests/TestSuite_virtio_event_idx_interrupt_cbdma.py b/tests/TestSuite_virtio_event_idx_interrupt_cbdma.py index a3431827..697cfd97 100644 --- a/tests/TestSuite_virtio_event_idx_interrupt_cbdma.py +++ b/tests/TestSuite_virtio_event_idx_interrupt_cbdma.py @@ -2,11 +2,6 @@ # Copyright(c) 2022 Intel Corporation # -""" -DPDK Test suite. -Virtio idx interrupt need test with l3fwd-power sample -""" - import _thread import re import time @@ -279,7 +274,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=100) + res = self.check_packets_after_reload_virtio_device(reload_times=10) self.verify(res is True, "Should increase the wait times of ixia") self.stop_all_apps() @@ -406,7 +401,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=100) + res = self.check_packets_after_reload_virtio_device(reload_times=10) self.verify(res is True, "Should increase the wait times of ixia") self.stop_all_apps() -- 2.25.1