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 9856BA04B5; Fri, 18 Sep 2020 05:07:30 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 6694C1D6BA; Fri, 18 Sep 2020 05:07:30 +0200 (CEST) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by dpdk.org (Postfix) with ESMTP id 05CB31D6B7 for ; Fri, 18 Sep 2020 05:07:28 +0200 (CEST) IronPort-SDR: Xh2dE0jhEifOFuFmExPvbejlppdqo7kTYkIuu7DrrOHjT3JzSi7iWYS2QYc0vYsrvxUbexQ4kU Lrq5C7qN9aoA== X-IronPort-AV: E=McAfee;i="6000,8403,9747"; a="139852610" X-IronPort-AV: E=Sophos;i="5.77,273,1596524400"; d="scan'208";a="139852610" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Sep 2020 20:07:25 -0700 IronPort-SDR: VVTsxfk+K4COgEmhOPChQAFV7tPgobJjkb63diIjUgKKTBqr2ZXJv3PqsP1fqpr393FcZ21b4g NlD7qPi6o5gg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,273,1596524400"; d="scan'208";a="320460465" Received: from unknown (HELO localhost.localdomain) ([10.240.183.80]) by orsmga002.jf.intel.com with ESMTP; 17 Sep 2020 20:07:23 -0700 From: Chen Linglix To: dts@dpdk.org Cc: Chen Linglix Date: Fri, 18 Sep 2020 11:05:25 +0800 Message-Id: <20200918030525.30064-1-linglix.chen@intel.com> X-Mailer: git-send-email 2.17.1 Subject: [dts] [PATCH V1] tests/TestSuite_tso:update scapy_modules path 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" update scapy_modules path Signed-off-by: Chen Linglix --- tests/TestSuite_tso.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_tso.py b/tests/TestSuite_tso.py index d0bff6c..e7b4a8c 100644 --- a/tests/TestSuite_tso.py +++ b/tests/TestSuite_tso.py @@ -106,7 +106,7 @@ class TestTSO(TestCase): Load vxlan or nvgre module to scapy. """ cwd = os.getcwd() - dir_module = cwd + r'/' + 'dep' + dir_module = cwd + r'/' + 'dep' + '/scapy_modules' self.tester.scapy_append('sys.path.append("%s")' % dir_module) self.tester.scapy_append("from vxlan import VXLAN") self.tester.scapy_append('from nvgre import NVGRE') -- 1.8.3.1