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 CB69EA0508; Wed, 13 Apr 2022 09:25:26 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8729040694; Wed, 13 Apr 2022 09:25:26 +0200 (CEST) Received: from mailgw01.pantheon.sk (mailgw01.pantheon.sk [46.229.239.26]) by mails.dpdk.org (Postfix) with ESMTP id ED5594068B for ; Wed, 13 Apr 2022 09:25:24 +0200 (CEST) Received: from mailgw01.pantheon.sk (localhost.localdomain [127.0.0.1]) by mailgw01.pantheon.sk (Proxmox) with ESMTP id A376C201EBA; Wed, 13 Apr 2022 09:25: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=w9OUfMmWklvEzaoDQqv7 U4iOVxMe+pQS6vq9XWeODsA=; b=n5sVR0Do/HaaMe1pTH2KzpmJkgqRxyIrtExl T2JerHHe2hkEFIrndTdM+LH5yTCa3uiYsS7jnZdy9gfH0f8E5+84gBqsfxU3XoAt vwNkKdTnQq7eoA4Iuxqhezi8w6Yg9Fz67w1AXWMnKEorEgNvQkHEawReDpTFaNwR NcMq/tBU34GmeGxZb4ymNP/rJXI9O1HPV0H90O0GOJleL612ex7yvfjK4p8p2UgT JGezxcteuvfbGRi5VXwpfmoSgIVZYEIQg+yowgvSooLnC9+vktsA8iKQnxcz55lE JG1RWOOtEwjkXzaYs87LCUGGe+0ssBsrlBv5mpx7A35dY6hnmA== From: =?iso-8859-2?Q?Juraj_Linke=B9?= To: "ohilyard@iol.unh.edu" , "dts@dpdk.org" CC: "lijuan.tu@intel.com" Subject: RE: [PATCH v2 1/2] framework: Move test-specific files to test directory Thread-Topic: [PATCH v2 1/2] framework: Move test-specific files to test directory Thread-Index: AQHYTc1o+r8xbjLJHk2D5OHOx2wkL6ztc1DQ Date: Wed, 13 Apr 2022 07:25:23 +0000 Message-ID: References: <20220411175549.14680-1-ohilyard@iol.unh.edu> In-Reply-To: <20220411175549.14680-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 > --- > 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 ++++++------ As Lijian Mentioned, we should also move qemu_kvm and qemu_libvirt. As far = as I can tell, the only virt file that needs to stay is virt_resource and a= ll of the rest (including qemu) can be moved.