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 C2CD4A0487 for ; Fri, 5 Jul 2019 15:55:37 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id B83561BEC9; Fri, 5 Jul 2019 15:55:37 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by dpdk.org (Postfix) with ESMTP id F098C1BDF2 for ; Fri, 5 Jul 2019 15:55:35 +0200 (CEST) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.16.0.27/8.16.0.27) with SMTP id x65DsmHV024777; Fri, 5 Jul 2019 06:55:35 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : mime-version : content-type; s=pfpt0818; bh=Ge7oJ65jsectFR//IiEluUU63P1YQAk4d1QaF6IW18o=; b=kaUg3iwbnH9WkXbZcXf961oSQFucQjc5stIPuSZpu+j2H9jg76TlgWWU6XnJTaek00Yk 85T3SWukX5V+8Qx5zp9ySJwRiPZqB8Nq3O/xHZPJa6WCLQC0WL9ZZUlMmO2WphHEOcV3 qjD3tEv8hQygLgDEIBKREwJIB3Wi5bs6nuoZz5PvqpDnMWZmL+EdSj+VsPgy4yUxMWGT 2fcpmp4VMHBWVyQBMi5bLeTxysolvtPISLV7v2AsVyUBGIXj6h1pY3IKwufHUhKLo/5G xJVJ6ffNr2VeFJtAweafIEkuEIpw5H7GVpWtEiIiuPLWfgYArSQ+Vv4mh+k8GSEjvNsO gw== Received: from sc-exch02.marvell.com ([199.233.58.182]) by mx0b-0016f401.pphosted.com with ESMTP id 2thjyrc39g-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Fri, 05 Jul 2019 06:55:35 -0700 Received: from SC-EXCH01.marvell.com (10.93.176.81) by SC-EXCH02.marvell.com (10.93.176.82) with Microsoft SMTP Server (TLS) id 15.0.1367.3; Fri, 5 Jul 2019 06:55:33 -0700 Received: from maili.marvell.com (10.93.176.43) by SC-EXCH01.marvell.com (10.93.176.81) with Microsoft SMTP Server id 15.0.1367.3 via Frontend Transport; Fri, 5 Jul 2019 06:55:33 -0700 Received: from dut1171.mv.qlogic.com (unknown [10.112.88.18]) by maili.marvell.com (Postfix) with ESMTP id 81C6C3F703F; Fri, 5 Jul 2019 06:55:33 -0700 (PDT) Received: from dut1171.mv.qlogic.com (localhost [127.0.0.1]) by dut1171.mv.qlogic.com (8.14.7/8.14.7) with ESMTP id x65DtXR6006503; Fri, 5 Jul 2019 06:55:33 -0700 Received: (from root@localhost) by dut1171.mv.qlogic.com (8.14.7/8.14.7/Submit) id x65DtWgm006502; Fri, 5 Jul 2019 06:55:32 -0700 From: Yash Sharma To: , CC: , , , yash Date: Fri, 5 Jul 2019 06:55:17 -0700 Message-ID: <20190705135517.6466-1-ysharma@marvell.com> X-Mailer: git-send-email 2.12.0 MIME-Version: 1.0 Content-Type: text/plain X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:, , definitions=2019-07-05_05:, , signatures=0 Subject: [dts] [PATCH 1/1] framework/test_capabilities.py fastlinq adapters doesn't support SCTP checksum offload, adding driver in Dictionary so that test escape SCTP Checksum part but continue to test other Checksum offload. 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" From: yash Signed-off-by: yash --- framework/test_capabilities.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/test_capabilities.py b/framework/test_capabilities.py index 2ad3fae..79a6dee 100644 --- a/framework/test_capabilities.py +++ b/framework/test_capabilities.py @@ -3,7 +3,7 @@ Dict used to skip parts of tests if NIC is known not to support them """ DRIVER_TEST_LACK_CAPA = { - 'sctp_tx_offload' : ['thunder-nicvf', 'fm10k'] + 'sctp_tx_offload' : ['thunder-nicvf', 'fm10k', 'qede'] } -- 1.8.3.1