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 1B7B4A0093; Fri, 22 May 2020 10:40:04 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 1243E1D93E; Fri, 22 May 2020 10:40:04 +0200 (CEST) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 09AEC1D927 for ; Fri, 22 May 2020 10:40:02 +0200 (CEST) IronPort-SDR: xUqU1PFmES6NFvJDC37bK8uRoML0H4RXfy54bbG9NUskUP1jGMCeGGRrV22Ldv0+3I7vopypBQ TudIh3hqopPA== 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:02 -0700 IronPort-SDR: CCvzSx6zotk54OfshVgbNZJTUSZrS7iA50SRx1j47xIwZY/C06PbyLKBXhQl2sZx1oE9w+qNrU BdVtChsUpYIw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.73,421,1583222400"; d="scan'208";a="283336848" 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:01 -0700 From: Xiao Qimai To: dts@dpdk.org Cc: Xiao Qimai Date: Fri, 22 May 2020 16:31:53 +0800 Message-Id: <1590136328-457243-3-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 02/17]loopback_multi_queues: change verfiy mpps to largger than 5 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_loopback_multi_queues.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_loopback_multi_queues.py b/tests/TestSuite_loopback_multi_queues.py index 029c1f0..c08b252 100644 --- a/tests/TestSuite_loopback_multi_queues.py +++ b/tests/TestSuite_loopback_multi_queues.py @@ -116,7 +116,7 @@ class TestLoopbackMultiQueues(TestCase): result = lines.group(1) results += float(result) Mpps = results / (1000000 * 10) - self.verify(Mpps > 0, "port can not receive packets") + self.verify(Mpps > 5, "port can not receive packets") return Mpps def update_result_table(self, frame_size, case_info, Mpps): -- 1.8.3.1