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 29BA8A0540; Wed, 15 Jul 2020 10:18:14 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 0F5F91BF95; Wed, 15 Jul 2020 10:18:14 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 7E2C81BF8D for ; Wed, 15 Jul 2020 10:18:12 +0200 (CEST) IronPort-SDR: tZv2cvS/fImxGCICtbbTk2+YtZEOODAXfrKRha/0Fhaw3puz+g7Qe1HBxUM0a9mDSODqZ/TMZF WkekfNUNjoJA== X-IronPort-AV: E=McAfee;i="6000,8403,9682"; a="149097786" X-IronPort-AV: E=Sophos;i="5.75,354,1589266800"; d="scan'208";a="149097786" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 15 Jul 2020 01:18:11 -0700 IronPort-SDR: b/g8li5OaH3JudXQYBYVW2CQgKzfYJ5XcEYRLZ0KwmvgDlNaC/8V7X+3oZfw6Bg1uKpQnNhyFC 5eb0rK92mF8A== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.75,354,1589266800"; d="scan'208";a="299810509" Received: from unknown (HELO xqm-virtio_tester.localdomain) ([10.240.183.52]) by orsmga002.jf.intel.com with ESMTP; 15 Jul 2020 01:18:09 -0700 From: Xiao Qimai To: dts@dpdk.org Cc: Xiao Qimai Date: Wed, 15 Jul 2020 16:09:12 +0800 Message-Id: <1594800554-45157-3-git-send-email-qimaix.xiao@intel.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1594800554-45157-1-git-send-email-qimaix.xiao@intel.com> References: <1594800554-45157-1-git-send-email-qimaix.xiao@intel.com> Subject: [dts] [PATCH V1 2/4]tests/TestSuite_vhost_event_idx_interrupt: add parameter interrupt-only for l3fwd-power 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" Signed-off-by: Xiao Qimai --- tests/TestSuite_vhost_event_idx_interrupt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_vhost_event_idx_interrupt.py b/tests/TestSuite_vhost_event_idx_interrupt.py index d6b0b3d..4bb40c7 100644 --- a/tests/TestSuite_vhost_event_idx_interrupt.py +++ b/tests/TestSuite_vhost_event_idx_interrupt.py @@ -107,7 +107,7 @@ class TestVhostEventIdxInterrupt(TestCase): port_info = "0x1" if self.vm_num == 1 else "0x3" example_para = "./examples/l3fwd-power/build/l3fwd-power " - para = " --log-level=9 %s -- -p %s --parse-ptype 1 --config '%s'" % (vdev_info, port_info, config_info) + para = " --log-level=9 %s -- -p %s --parse-ptype 1 --config '%s' --interrupt-only" % (vdev_info, port_info, config_info) eal_params = self.dut.create_eal_parameters(cores=self.core_list_l3fwd, no_pci=True) command_line_client = example_para + eal_params + para self.vhost.get_session_before(timeout=2) -- 1.8.3.1