From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 61EDB2B91 for ; Thu, 2 Jun 2016 05:31:02 +0200 (CEST) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga103.fm.intel.com with ESMTP; 01 Jun 2016 20:31:00 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.26,404,1459839600"; d="scan'208";a="979168796" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by fmsmga001.fm.intel.com with ESMTP; 01 Jun 2016 20:30:53 -0700 Received: from shecgisg003.sh.intel.com (shecgisg003.sh.intel.com [10.239.29.90]) by shvmail01.sh.intel.com with ESMTP id u523Uqm2014101; Thu, 2 Jun 2016 11:30:52 +0800 Received: from shecgisg003.sh.intel.com (localhost [127.0.0.1]) by shecgisg003.sh.intel.com (8.13.6/8.13.6/SuSE Linux 0.8) with ESMTP id u523UnWN009568; Thu, 2 Jun 2016 11:30:51 +0800 Received: (from pengyuan@localhost) by shecgisg003.sh.intel.com (8.13.6/8.13.6/Submit) id u523UnHe009564; Thu, 2 Jun 2016 11:30:49 +0800 From: pengyuan To: dts@dpdk.org Cc: pengyuan Date: Thu, 2 Jun 2016 11:30:48 +0800 Message-Id: <1464838248-9530-1-git-send-email-yuan.peng@intel.com> X-Mailer: git-send-email 1.7.4.1 Subject: [dts] [PATCH] tests vf_vlan: reverse rx vlan remove command 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: , X-List-Received-Date: Thu, 02 Jun 2016 03:31:03 -0000 Signed-off-by: pengyuan diff --git a/tests/TestSuite_vf_vlan.py b/tests/TestSuite_vf_vlan.py index 0a0dbe1..7d1ec73 100644 --- a/tests/TestSuite_vf_vlan.py +++ b/tests/TestSuite_vf_vlan.py @@ -319,7 +319,7 @@ class TestVfVlan(TestCase): "received 1 packets" not in out, "Received filtered vlan packet!!!") for rx_vlan in rx_vlans: - self.vm0_testpmd.execute_cmd('rx_vlan rm 0 %d' % rx_vlan) + self.vm0_testpmd.execute_cmd('rx_vlan rm %d 0' % rx_vlan) # send packet with vlan 0 out = self.send_and_getout(vlan=0, pkt_type="VLAN_UDP") -- 2.5.0