From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm1-f67.google.com (mail-wm1-f67.google.com [209.85.128.67]) by dpdk.org (Postfix) with ESMTP id 68E6710A3 for ; Sat, 19 Jan 2019 13:39:09 +0100 (CET) Received: by mail-wm1-f67.google.com with SMTP id d15so6867669wmb.3 for ; Sat, 19 Jan 2019 04:39:09 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=v+wYqlFIJ2dehP5TrYiWYpjqpludfDFbad913bllw2o=; b=ZYregS98uS6BEJrBDGrmbJ3N6EoP0Lpxw+g2XxWlx7XwJqopWxGgx777XNw4elHj4v OsfjaIEiRxwthOlquTSWZvDNiyNXbRcUR2oyeaaHgTU7PDPDccM9Y/dvcom6PBUs3wbq 8eE/eJ9g6qCuuMEKl9odTduulg+kZUHP2G1K4bvl77o/HTjCiGL4HnbVqGYGQdE7z0KX +ilZQOaBhitr73f920Ks7WSZ/zQJJsHFU6sCoNaGD+BJsblFaESdxJZoMGklWc+TLJxO ErOEh92IE8vEQx0BuV5QGSOMRWvpBk98ieAAVF2bCsSkrIKQzyLMdG+3lOueNHfusRmX xsIQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=v+wYqlFIJ2dehP5TrYiWYpjqpludfDFbad913bllw2o=; b=hLZT/oxLMYyw+FRWiTy7ktgBCjMiO7qNaXTvqrG8SULBlDJn0aw5DWuJ93DOQkYDcX 5lrMyHjpcbL0T3AwpoHZ1SqkNjiggYfJKMC01P0gDzmURC3t1rktG2FTVO7qlnqJMqB1 wTfUnJGzCN4ZbKbvv5ZIi/r+I8DYE6A3x7XDQvPpqIzq5fEv6YKwhB15lsR+SpL7vC4K T6jLQqIt8flcMyc9CTrd/9io8ha4WeY3YWOFjxJtO02CwrT/NqFp8augX0BT5g+F4e5O DWHAYFGn4NZAIX3q1bD6c3cI6Wg5UB0FGuyoCtlkkPVIuHIg2bVF5m+hs3ldhlkkc5Jl r7yg== X-Gm-Message-State: AJcUukc+uxxjsdcb3DPMtDQi59MpbTZ2vlDLOu4I1R+4GtOlNiWTuyUq MbFinrMrqKlpHo0WD7SLf9GTnIfm X-Google-Smtp-Source: ALg8bN75gEyDVNGXCG8670QbRq2tlEG3eHkaKjYorze0BoKQpFeqLMinr9TUC+pyMeuZWUSowDedIQ== X-Received: by 2002:a1c:864f:: with SMTP id i76mr18382300wmd.83.1547901548974; Sat, 19 Jan 2019 04:39:08 -0800 (PST) Received: from localhost.localdomain (bzq-109-66-107-204.red.bezeqint.net. [109.66.107.204]) by smtp.gmail.com with ESMTPSA id i186sm54814698wmd.19.2019.01.19.04.39.08 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Sat, 19 Jan 2019 04:39:08 -0800 (PST) From: Rami Rosen To: dts@dpdk.org Cc: Rami Rosen Date: Sat, 19 Jan 2019 14:39:02 +0200 Message-Id: <20190119123902.10193-1-ramirose@gmail.com> X-Mailer: git-send-email 2.19.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dts] [PATCH] tests/ipgre: fix typos 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: Sat, 19 Jan 2019 12:39:09 -0000 Signed-off-by: Rami Rosen --- tests/TestSuite_ipgre.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/TestSuite_ipgre.py b/tests/TestSuite_ipgre.py index 29d85ac..f188df0 100644 --- a/tests/TestSuite_ipgre.py +++ b/tests/TestSuite_ipgre.py @@ -257,7 +257,7 @@ class TestIpgre(TestCase): """ Start testpmd with multi queues, add GRE filter that forward inner/outer ip address 0.0.0.0 to queue 3, Send packet inner - ip address matched and check packet recevied by queue 3 + ip address matched and check packet received by queue 3 """ outer_mac = self.tester_iface_mac inner_mac = "10:00:00:00:00:00" @@ -275,13 +275,13 @@ class TestIpgre(TestCase): cmd = "tunnel_filter add 0 %s %s 0.0.0.0 1 ipingre iip 0 3"%(outer_mac, inner_mac) self.dut.send_expect( cmd, "testpmd>") - # Send packet inner ip address matched and check packet recevied by queue 3 + # Send packet inner ip address matched and check packet received by queue 3 pkt_types = {"MAC_IP_GRE_IPv4-TUNNEL_UDP_PKT": ["TUNNEL_GRENAT", "INNER_L4_UDP"]} config_layers = {'ether': {'src': self.outer_mac_src}, 'ipv4': {'dst': "0.0.0.0", 'proto': 'gre'}} self.check_packet_transmission(pkt_types, config_layers) - # Remove tunnel filter and check same packet recevied by queue 0 + # Remove tunnel filter and check same packet received by queue 0 cmd = "tunnel_filter rm 0 %s %s 0.0.0.0 1 ipingre iip 0 3"%(outer_mac, inner_mac) self.dut.send_expect( cmd, "testpmd>") @@ -289,7 +289,7 @@ class TestIpgre(TestCase): cmd = "tunnel_filter add 0 %s %s 0.0.0.0 1 ipingre oip 0 3"%(outer_mac, inner_mac) self.dut.send_expect( cmd, "testpmd>") - # Send packet outer ip address matched and check packet recevied by queue 3. + # Send packet outer ip address matched and check packet received by queue 3. pkt_types = {"MAC_IP_GRE_IPv4-TUNNEL_UDP_PKT": ["TUNNEL_GRENAT", "INNER_L4_UDP"]} config_layers = {'ether': {'src': self.outer_mac_src}, 'ipv4': {'dst': "0.0.0.0", 'proto': 'gre'}} -- 2.19.2