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 508C9A0540; Wed, 15 Jul 2020 10:18:15 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 451271BF94; Wed, 15 Jul 2020 10:18:15 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 2335D1BF8D for ; Wed, 15 Jul 2020 10:18:12 +0200 (CEST) IronPort-SDR: zD7tfiQUwRG3XJTeitEJdomypqsANg946oi6gGTBKVNc/2FY+i6P8lpNNFL1O0wq4d9qNpWAtD W+k6QzdaPFrA== X-IronPort-AV: E=McAfee;i="6000,8403,9682"; a="149097785" X-IronPort-AV: E=Sophos;i="5.75,354,1589266800"; d="scan'208";a="149097785" 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: 3evdvitCyhsnDOBORAJgHzg5ecO1E+TwRqZUVurLlz/MDwLz9zlJzUbj9+umgGKM0KFe+ppEOt zlCY2DmzHUqQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.75,354,1589266800"; d="scan'208";a="299810495" Received: from unknown (HELO xqm-virtio_tester.localdomain) ([10.240.183.52]) by orsmga002.jf.intel.com with ESMTP; 15 Jul 2020 01:18:05 -0700 From: Xiao Qimai To: dts@dpdk.org Cc: Xiao Qimai Date: Wed, 15 Jul 2020 16:09:11 +0800 Message-Id: <1594800554-45157-2-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 1/4]tests/TestSuite_vhost_enqueue_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_enqueue_interrupt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_vhost_enqueue_interrupt.py b/tests/TestSuite_vhost_enqueue_interrupt.py index 7c6368a..9d3f5bc 100644 --- a/tests/TestSuite_vhost_enqueue_interrupt.py +++ b/tests/TestSuite_vhost_enqueue_interrupt.py @@ -110,7 +110,7 @@ class TestVhostEnqueueInterrupt(TestCase): example_cmd = "./examples/l3fwd-power/build/l3fwd-power " vdev = 'net_vhost0,iface=vhost-net,queues=%d,client=1' % self.queues - para = " -- -p 0x1 --parse-ptype 1 --config '%s' " % config_info + para = " -- -p 0x1 --parse-ptype 1 --config '%s' --interrupt-only" % config_info eal_params = self.dut.create_eal_parameters(cores=self.core_list_l3fwd, no_pci=True, ports=[self.pci_info], vdevs=[vdev]) command_line_client = example_cmd + eal_params + para self.vhost.get_session_before(timeout=2) -- 1.8.3.1