From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 31B20A0C55; Fri, 5 Nov 2021 14:22:56 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0496D41134; Fri, 5 Nov 2021 14:22:56 +0100 (CET) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by mails.dpdk.org (Postfix) with ESMTP id B36C840E5A for ; Fri, 5 Nov 2021 14:22:54 +0100 (CET) X-IronPort-AV: E=McAfee;i="6200,9189,10158"; a="292729300" X-IronPort-AV: E=Sophos;i="5.87,211,1631602800"; d="scan'208";a="292729300" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 05 Nov 2021 06:22:53 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.87,211,1631602800"; d="scan'208";a="490319790" Received: from fmsmsx606.amr.corp.intel.com ([10.18.126.86]) by orsmga007.jf.intel.com with ESMTP; 05 Nov 2021 06:22:53 -0700 Received: from shsmsx602.ccr.corp.intel.com (10.109.6.142) by fmsmsx606.amr.corp.intel.com (10.18.126.86) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2242.12; Fri, 5 Nov 2021 06:22:52 -0700 Received: from shsmsx601.ccr.corp.intel.com (10.109.6.141) by SHSMSX602.ccr.corp.intel.com (10.109.6.142) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2242.12; Fri, 5 Nov 2021 21:22:50 +0800 Received: from shsmsx601.ccr.corp.intel.com ([10.109.6.141]) by SHSMSX601.ccr.corp.intel.com ([10.109.6.141]) with mapi id 15.01.2242.012; Fri, 5 Nov 2021 21:22:50 +0800 From: "Tu, Lijuan" To: "An, XiangX" , "dts@dpdk.org" CC: "An, XiangX" Thread-Topic: [dts] [PATCH V2 4/4] tests/unit_tests_eal: modify code to adapt avx512 Thread-Index: AQHX0UiHcUnT6nlMTUumHHRowZwrY6v07arg Date: Fri, 5 Nov 2021 13:22:50 +0000 Message-ID: <702b959dab0b4d98bee665091f2ba06c@intel.com> References: <1636008699-16970-1-git-send-email-xiangx.an@intel.com> <1636008699-16970-4-git-send-email-xiangx.an@intel.com> In-Reply-To: <1636008699-16970-4-git-send-email-xiangx.an@intel.com> Accept-Language: zh-CN, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-reaction: no-action dlp-version: 11.6.200.16 dlp-product: dlpe-windows x-originating-ip: [10.239.127.36] Content-Type: text/plain; charset="iso-2022-jp" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dts] [PATCH V2 4/4] tests/unit_tests_eal: modify code to adapt avx512 X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.29 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" > -----Original Message----- > From: dts On Behalf Of Xiang An > Sent: 2021=1B$BG/=1B(B11=1B$B7n=1B(B4=1B$BF|=1B(B 14:52 > To: dts@dpdk.org > Cc: An, XiangX > Subject: [dts] [PATCH V2 4/4] tests/unit_tests_eal: modify code to adapt = avx512 >=20 > Modify code to adapt rxmod avx512. >=20 > Signed-off-by: Xiang An > --- > tests/TestSuite_unit_tests_eal.py | 14 ++++++++------ > 1 file changed, 8 insertions(+), 6 deletions(-) >=20 > diff --git a/tests/TestSuite_unit_tests_eal.py b/tests/TestSuite_unit_tes= ts_eal.py > index 8096183..9b44132 100644 > --- a/tests/TestSuite_unit_tests_eal.py > +++ b/tests/TestSuite_unit_tests_eal.py > @@ -38,7 +38,7 @@ EAL autotest. >=20 > import framework.utils as utils > from framework.test_case import TestCase > - > +from framework.settings import load_global_setting, > DPDK_RXMODE_SETTING > # > # > # Test class. > @@ -457,13 +457,15 @@ class TestUnitTestsEal(TestCase): > """ > Run acl autotest. > """ > - > - eal_params =3D self.dut.create_eal_parameters() > - self.test_app_cmdline +=3D "--no-pci" > + default_cores =3D '1S/4C/1T' default_cores defined but not used.