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 F22D9A0506; Thu, 14 Apr 2022 07:39:26 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id EB1CB40687; Thu, 14 Apr 2022 07:39:26 +0200 (CEST) Received: from mailgw01.pantheon.sk (mailgw01.pantheon.sk [46.229.239.26]) by mails.dpdk.org (Postfix) with ESMTP id 3D5B64003F for ; Thu, 14 Apr 2022 07:39:25 +0200 (CEST) Received: from mailgw01.pantheon.sk (localhost.localdomain [127.0.0.1]) by mailgw01.pantheon.sk (Proxmox) with ESMTP id C15FD201EEF; Thu, 14 Apr 2022 07:39:24 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=pantheon.tech; h=cc:cc:content-transfer-encoding:content-type:content-type :date:from:from:in-reply-to:message-id:mime-version:references :reply-to:subject:subject:to:to; s=dkim; bh=3Mq0pNiOyIr37H868/zg qopYgy4wTmL2jEmWBlguabY=; b=iMPJ0N03JN6Eq2wvw6Ts8sdqbXabkJJq78Qe aPMxEQ1qWD0it/c6AayPpTaWFtRMArUSYUJiSsG2R+lr/8mYHnPZ6r+6kmjIimen iKbIKLY8ErrLZrN9i6eDK0s0TwlcAysssCpZq0m19LclN844Vso5zvBtKxBZMn63 VfqY/JixEBqIRnMmDkR9HYi5SfkL0LmsJ5BDbOphmTvOo5dLiduI+ciSA4nmWIzF XjJ0wANI2tTHaJQR+V7bOaikZhtBhPmqExsn1FhNmMZ/r8IPZqHd2wfUejcf+n9R 7xLPLkqXtKqyxy5O0XKnOYJeRRR3ad/MkN0xclozan9jOevNHg== From: =?iso-8859-2?Q?Juraj_Linke=B9?= To: "ohilyard@iol.unh.edu" , "dts@dpdk.org" CC: "lijuan.tu@intel.com" Subject: RE: [PATCH v3 1/3] framework: Move test-specific files to test directory Thread-Topic: [PATCH v3 1/3] framework: Move test-specific files to test directory Thread-Index: AQHYT0ZxhGDPhh8A5EqOHN+A+RcEqqzu5ThA Date: Thu, 14 Apr 2022 05:39:22 +0000 Message-ID: <910c769d986a4c1f8c99515e74ebcfc8@pantheon.tech> References: <20220413145437.31526-1-ohilyard@iol.unh.edu> In-Reply-To: <20220413145437.31526-1-ohilyard@iol.unh.edu> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.101.4.10] Content-Type: text/plain; charset="iso-8859-2" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 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 > Subject: [PATCH v3 1/3] framework: Move test-specific files to test direc= tory >=20 > From: Owen Hilyard >=20 > The DTS Improvement Working Group decided to move files specific to a sin= gle > test or a small group of tests into tests/util. This is done in order to = aid in the > organization of DTS. >=20 > Signed-off-by: Owen Hilyard > --- > framework/flow/__init__.py | 0 > framework/virt_resource.py | 2 +- > tests/data/__init__.py | 2 ++ > tests/util/__init__.py | 2 ++ > tests/util/flow/__init__.py | 2 ++ > {framework =3D> tests/util}/flow/enums.py | 0 > {framework =3D> tests/util}/flow/exceptions.py | 0 > {framework =3D> tests/util}/flow/flow.py | 0 > {framework =3D> tests/util}/flow/flow_action_items.py | 0 > {framework =3D> tests/util}/flow/flow_items.py | 8 +++----- > {framework =3D> tests/util}/flow/flow_pattern_items.py | 0 > {framework =3D> tests/util}/flow/flow_rule.py | 2 +- > {framework =3D> tests/util}/flow/generator.py | 0 > tests/util/virt/__init__.py | 2 ++ > {framework =3D> tests/util/virt}/virt_base.py | 8 ++++---- > {framework =3D> tests/util/virt}/virt_common.py | 8 ++++---- > {framework =3D> tests/util/virt}/virt_dut.py | 10 +++++----- > {framework =3D> tests/util/virt}/virt_scene.py | 12 ++++++------ Looks like you didn't move the qemu files.