From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr1-f66.google.com (mail-wr1-f66.google.com [209.85.221.66]) by dpdk.org (Postfix) with ESMTP id 2F51014EC for ; Sat, 19 Jan 2019 13:46:08 +0100 (CET) Received: by mail-wr1-f66.google.com with SMTP id v13so18214533wrw.5 for ; Sat, 19 Jan 2019 04:46:08 -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=7orOw7qZobTdK7qs5RaxPgna88+6FE9m3wAY6F7Xyhk=; b=L9jhZWk+6Ljn+WO730wcC+vmDK1lg6Hl5LJujaKYVp2j3/kyDyz1976FfQROJZMPOL wTL3bkqX/0UN314Vr6GpIomwmUv9LPVxfUXhgCKctihdbI3Rhf3hAoL5d7WxsraZYI3H tNFto+NMMlyXr/YzLedR0IE6Ojb5r6TVPbE+/e5J002XJYHS+dWfuNQWsHKD1eVSQJeT y7G1pJ9cJ/EX8vYKxKpM0L+KwrmOqmLODB8IU40jYo1KH4yPMqxJsm+OiHXroKgV7Xlt qRtcV8Ly/UqHdtLbOH5L7+Y78kCPYkMJ41DKqGuGBiuvW5NU5dyTyj7NNUPOaeQ0vztd t6Iw== 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=7orOw7qZobTdK7qs5RaxPgna88+6FE9m3wAY6F7Xyhk=; b=EkQYvlRCl1tQRp5l2x2IAAzLiBz6LOz8CUEkNbJm5u4tACBTWYK3i0uT9OC2122oHg Nvu1F/BtB3rCkneylhAt00hokWtgBeDBHR3rSXJEZ0akzWJ7Ce5Dx0gwSZXGyfqJ+Ece pdL3C993aBCLfVACexV9Ah2d/J+Tgv8yNWRZGs8bdVJF5FtYyRjC2SNnl5nS/gZatPkE Tq897ABVIKZl/phX0sID9rX1iehsL14jFuDLwKXMcDpdYkCj9LJUyDWEEJHfBmweG0c0 BVCxezIPDkQwIrEB/VefgjY9SnEMNMokXMJWjjd0cN4XnuQBrbJiMSQBH7ruxlhf1P4d 7EdA== X-Gm-Message-State: AJcUukcPGTjOfNgLPR6M7ZyCc23TbfNvBB4O9ggDxiXVu++VDWbpkQdT 4kwi8dIl5GApB5jbzQJFyqFwPfpA X-Google-Smtp-Source: ALg8bN47+8YMTJlQbSzT7g2GV7uBmNywguCjc2wfHKcaX4qa+UdrNZal+Naq9Ffl8nlDsaAWmWHKQg== X-Received: by 2002:adf:92c7:: with SMTP id 65mr19405070wrn.228.1547901966544; Sat, 19 Jan 2019 04:46:06 -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 n11sm26596743wrw.60.2019.01.19.04.46.05 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Sat, 19 Jan 2019 04:46:06 -0800 (PST) From: Rami Rosen To: dts@dpdk.org Cc: Rami Rosen Date: Sat, 19 Jan 2019 14:46:00 +0200 Message-Id: <20190119124600.11809-1-ramirose@gmail.com> X-Mailer: git-send-email 2.19.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dts] [PATCH] tests/vf_jumboframe: 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:46:08 -0000 Signed-off-by: Rami Rosen --- tests/TestSuite_vf_jumboframe.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/TestSuite_vf_jumboframe.py b/tests/TestSuite_vf_jumboframe.py index dfafbd4..32f89d7 100644 --- a/tests/TestSuite_vf_jumboframe.py +++ b/tests/TestSuite_vf_jumboframe.py @@ -223,7 +223,7 @@ class TestVfJumboFrame(TestCase): def test_vf_normal_withjumbo(self): """ When jumbo frame supported, this case is to verify that the normal size - packet forwrding should be support correct. + packet forwarding should be support correct. """ # should enable jumbo on host self.dutobj = self.dut.ports_info[self.port]['port'] @@ -257,7 +257,7 @@ class TestVfJumboFrame(TestCase): # On igb, for example i350, refer to :DPDK-1117 # For PF, the max-pkt-len = mtu + 18 + 4(VLAN header len). # For VF, the real max-pkt-len = the given max-pkt-len + 4(VLAN header len). - # This behavior is levelraged from kernel driver. + # This behavior is leveraged from kernel driver. # And it means max-pkt-len is always 4 bytes longer than assumed. if self.kdriver == "igb": @@ -320,7 +320,7 @@ class TestVfJumboFrame(TestCase): def tear_down_all(self): """ - When the case of this test suite finished, the enviroment should + When the case of this test suite finished, the environment should clear up. """ self.destroy_vm_env() -- 2.19.2