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 3C51DA05D3 for ; Fri, 24 May 2019 09:58:38 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 103641DB9; Fri, 24 May 2019 09:58:37 +0200 (CEST) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 35964A69 for ; Fri, 24 May 2019 09:58:34 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 24 May 2019 00:58:34 -0700 X-ExtLoop1: 1 Received: from unknown (HELO localhost.localdomain.sh.intel.com) ([10.240.176.135]) by fmsmga001.fm.intel.com with ESMTP; 24 May 2019 00:58:32 -0700 From: zhuwenhui To: dts@dpdk.org Cc: zhuwenhui Date: Fri, 24 May 2019 16:02:54 +0800 Message-Id: <1558684974-71893-1-git-send-email-wenhuix.zhu@intel.com> X-Mailer: git-send-email 1.9.3 Subject: [dts] [PATCH V1] tests:align directory changes in dpdk 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" According to the change of dpdk commit id "218c4e68c1d9". Changed from "common_linuxapp" to "common_linux" Signed-off-by: zhuwenhui --- tests/TestSuite_ftag.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/TestSuite_ftag.py b/tests/TestSuite_ftag.py index e58a57a..9d30918 100644 --- a/tests/TestSuite_ftag.py +++ b/tests/TestSuite_ftag.py @@ -70,7 +70,7 @@ class TestFtag(TestCase): patch_dst = "/tmp/" self.dut.session.copy_file_to(patch_file, patch_dst) self.patch_hotfix_dpdk(patch_dst + "fm10k-add-a-unit-test-for-FTAG-based-forwarding.patch", True) - self.dut.send_expect("sed -i -e '/CONFIG_RTE_VIRTIO_USER=y/a\CONFIG_RTE_LIBRTE_FM10K_FTAG_FWD=y' config/common_linuxapp", "# ") + self.dut.send_expect("sed -i -e '/CONFIG_RTE_VIRTIO_USER=y/a\CONFIG_RTE_LIBRTE_FM10K_FTAG_FWD=y' config/common_linux", "# ") self.dut.send_expect("sed -i -e '/SRCS-y += test_pmd_perf.c/a\SRCS-y += test_fm10k_ftag.c' app/test/Makefile", "# ") self.dut.build_install_dpdk(self.dut.target) @@ -165,7 +165,7 @@ class TestFtag(TestCase): Run after each test suite. """ self.dut.kill_all() - self.dut.send_expect("sed -i '/CONFIG_RTE_LIBRTE_FM10K_FTAG_FWD=y/d' config/common_linuxapp", "# ") + self.dut.send_expect("sed -i '/CONFIG_RTE_LIBRTE_FM10K_FTAG_FWD=y/d' config/common_linux", "# ") self.dut.send_expect("sed -i '/SRCS-y += test_fm10k_ftag.c/d' app/test/Makefile", "# ") patch_dst = "/tmp/" self.patch_hotfix_dpdk(patch_dst + "fm10k-add-a-unit-test-for-FTAG-based-forwarding.patch", False) -- 2.17.2