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 278C1A0093; Fri, 22 May 2020 10:40:21 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 1F10E1D940; Fri, 22 May 2020 10:40:21 +0200 (CEST) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 487A71D941 for ; Fri, 22 May 2020 10:40:19 +0200 (CEST) IronPort-SDR: HyoNrS8/JYEekWYLNGTttt/jG1pk3lpQH9QKQtUeUUM2BNphn8fGetNgYrXLDtA6DBWOr2k4YH 3blu0R977Grw== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 22 May 2020 01:40:18 -0700 IronPort-SDR: CicMA3A7dTmdwx555DHMJOb2QsNLMQlIQYv+sRMUZCqIV8LOmpyTk0oHkCrPyjWNZgL004FTbF UM7x9gG3SwIQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.73,421,1583222400"; d="scan'208";a="283336968" Received: from unknown (HELO xqm-virtio_tester.sh.intel.com) ([10.240.183.52]) by orsmga002.jf.intel.com with ESMTP; 22 May 2020 01:40:17 -0700 From: Xiao Qimai To: dts@dpdk.org Cc: Xiao Qimai Date: Fri, 22 May 2020 16:32:05 +0800 Message-Id: <1590136328-457243-15-git-send-email-qimaix.xiao@intel.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1590136328-457243-1-git-send-email-qimaix.xiao@intel.com> References: <1590136328-457243-1-git-send-email-qimaix.xiao@intel.com> Subject: [dts] [PATCH V1 14/17]vhost_multi_queue_qemu: change verified mpps value according to linerate 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_multi_queue_qemu.py | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/tests/TestSuite_vhost_multi_queue_qemu.py b/tests/TestSuite_vhost_multi_queue_qemu.py index c111846..b440b95 100644 --- a/tests/TestSuite_vhost_multi_queue_qemu.py +++ b/tests/TestSuite_vhost_multi_queue_qemu.py @@ -137,6 +137,15 @@ class TestVhostMultiQueueQemu(TestCase): self.verify(len(cores) >= 3, "Insufficient cores for speed testing, add the cpu number in cfg file.") self.vm_coremask = utils.create_mask(cores) + @property + def check_value(self): + check_dict = dict.fromkeys(self.frame_sizes) + linerate = {64: 0.085, 128: 0.12, 256: 0.20, 512: 0.35, 1024: 0.50, 1280: 0.55, 1518: 0.60} + for size in self.frame_sizes: + speed = self.wirespeed(self.nic, size, self.number_of_ports) + check_dict[size] = round(speed * linerate[size], 2) + return check_dict + def vhost_performance(self): """ Verify the testpmd can receive and forward the data @@ -168,7 +177,9 @@ class TestVhostMultiQueueQemu(TestCase): self.number_of_ports)) data_row = [frame_size, str(Mpps), str(pct), "Mergeable Multiqueue Performance"] self.result_table_add(data_row) - self.verify(Mpps != 0, "The receive data of frame-size: %d is 0" % frame_size) + self.verify(Mpps > self.check_value[frame_size], + "%s of frame size %d speed verify failed, expect %s, result %s" % ( + self.running_case, frame_size, self.check_value[frame_size], Mpps)) self.result_table_print() def send_and_verify(self, verify_type): -- 1.8.3.1