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 CE517A0503; Thu, 28 Apr 2022 08:25:41 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id A3AFA410DC; Thu, 28 Apr 2022 08:25:41 +0200 (CEST) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mails.dpdk.org (Postfix) with ESMTP id 3D07E40E78 for ; Thu, 28 Apr 2022 08:25:39 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1651127140; x=1682663140; h=from:to:cc:subject:date:message-id; bh=vFOTpuvxwIDetku5oVlDDj4HjkAvGqAKeegH9uEVYBI=; b=Fm31Hn8NGfxZgc8zxf40eOtzrhGKshK8963qSlXO838DmPmyjxYCuUhC qckHWwpZyyl2XD2/W0d4wW03MkazUrn+fHhnUip5kY14IMmTRj1BImjin XVnrCyPrixtxMBPdZQU0u6vzNSmK5azzDpsMW/1J8bFHaLvCcy3AnE0wZ qzQ1Rb24+vzuQtyXsbrfUU2VJccLot+LgDUyAA5NSTPcI3YmNxJ0YcTq5 +JoOh8GtoyF+NrLKd9VYwOEgAhjMEGxsiOtEoO1fv5VWCIpVralW9nI8T chk+EvMXHJUoOQn2xxNESY4LNXVa4XHhMSZ2dtJFUVkewJV6x5pavYk45 g==; X-IronPort-AV: E=McAfee;i="6400,9594,10330"; a="263763801" X-IronPort-AV: E=Sophos;i="5.90,295,1643702400"; d="scan'208";a="263763801" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 27 Apr 2022 23:25:38 -0700 X-IronPort-AV: E=Sophos;i="5.90,295,1643702400"; d="scan'208";a="581081864" Received: from unknown (HELO localhost.localdomain) ([10.239.251.94]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 27 Apr 2022 23:25:37 -0700 From: Jiale Song To: dts@dpdk.org Cc: Jiale Song Subject: [dts] [PATCH V1] tests/inline_ipsec: optimization script Date: Thu, 28 Apr 2022 14:50:09 +0000 Message-Id: <20220428145009.16107-1-songx.jiale@intel.com> X-Mailer: git-send-email 2.17.1 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 this command will close all scapy processes, including the started in framware, which will affect the subsequent case tests. Signed-off-by: Jiale Song --- tests/TestSuite_inline_ipsec.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/TestSuite_inline_ipsec.py b/tests/TestSuite_inline_ipsec.py index cb105d9c..9cc15301 100644 --- a/tests/TestSuite_inline_ipsec.py +++ b/tests/TestSuite_inline_ipsec.py @@ -522,7 +522,6 @@ class TestInlineIpsec(TestCase): """ Run after each test case. """ - self.tester.send_expect("killall scapy", "#", 5) self.tester.send_expect("killall tcpdump", "#", 5) self.dut.kill_all() time.sleep(2) -- 2.17.1