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 E1EBAA0524; Thu, 2 Jul 2020 10:06:04 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 9D8911D6E6; Thu, 2 Jul 2020 10:06:04 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 0FB391D6B3 for ; Thu, 2 Jul 2020 10:06:02 +0200 (CEST) IronPort-SDR: Yh8S34DiN7Kw98mR0ulBbti+BlP7vbVxcsD0yUnIpQHMWds8cXjgarZGbYgDD16Q4iC2esHmFn 5LePXBLgJEUw== X-IronPort-AV: E=McAfee;i="6000,8403,9669"; a="146821587" X-IronPort-AV: E=Sophos;i="5.75,303,1589266800"; d="scan'208";a="146821587" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 02 Jul 2020 00:51:20 -0700 IronPort-SDR: mcS6KxVL605cJWGvkY1GhTyjATLU4IWQu7IHp3GMb8asYnMWte2krywXP79GzDYDXzwPiIiFPn m+72YtoL6n1A== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.75,303,1589266800"; d="scan'208";a="295810927" Received: from unknown (HELO localhost.localdomain) ([10.240.183.80]) by orsmga002.jf.intel.com with ESMTP; 02 Jul 2020 00:51:18 -0700 From: Xie wei To: dts@dpdk.org Cc: Xie wei Date: Thu, 2 Jul 2020 15:53:04 +0800 Message-Id: <20200702075304.11732-1-weix.xie@intel.com> X-Mailer: git-send-email 2.17.1 Subject: [dts] [PATCH V1] tests/kernelpf_iavf:fix a small bug 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" modify the previous code problem. Signed-off-by: Xie wei --- tests/TestSuite_kernelpf_iavf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_kernelpf_iavf.py b/tests/TestSuite_kernelpf_iavf.py index 6fb1bae..733d72f 100644 --- a/tests/TestSuite_kernelpf_iavf.py +++ b/tests/TestSuite_kernelpf_iavf.py @@ -981,7 +981,7 @@ class TestKernelpfIavf(TestCase): """ Run after each test case. """ - if self.running_case == "test_vf_rx_interrupt":: + if self.running_case == "test_vf_rx_interrupt": self.dut.send_expect("killall l3fwd-power", "# ", 60, alt_session=True) self.destroy_2vf_in_2pf() else: -- 2.17.1