From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id B66AAA046B for ; Tue, 25 Jun 2019 08:16:06 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id A8E931BBF8; Tue, 25 Jun 2019 08:16:06 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 8ADE51BBEE for ; Tue, 25 Jun 2019 08:16:05 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 24 Jun 2019 23:16:04 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.63,415,1557212400"; d="scan'208";a="188175030" Received: from unknown (HELO localhost.localdomain.sh.intel.com) ([10.240.176.135]) by fmsmga002.fm.intel.com with ESMTP; 24 Jun 2019 23:16:03 -0700 From: changqingxwu To: dts@dpdk.org Cc: changqingxwu Date: Tue, 25 Jun 2019 14:20:45 +0800 Message-Id: <1561443645-63964-1-git-send-email-changqingx.wu@intel.com> X-Mailer: git-send-email 1.9.3 Subject: [dts] [PATCH V1] tests/queue_start_stop:Add network card type 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: changqingxwu --- tests/TestSuite_queue_start_stop.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/TestSuite_queue_start_stop.py b/tests/TestSuite_queue_start_stop.py index 34a2f41..e91ea91 100644 --- a/tests/TestSuite_queue_start_stop.py +++ b/tests/TestSuite_queue_start_stop.py @@ -157,7 +157,10 @@ class TestQueueStartStop(TestCase): except Exception, e: raise IOError("queue start/stop forward failure: %s" % e) - self.verify("ports 0 queue 0 receive 4 packages" in out, "start queue revice package failed, out = %s"%out) + if self.nic == "cavium_a063": + self.verify("ports 0 queue 0 receive 4 packages" in out, "start queue revice package failed, out = %s"%out) + else: + self.verify("ports 0 queue 0 receive 1 packages\r\n"*4 in out, "start queue revice package failed, out = %s"%out) try: # start tx queue test -- 2.17.2