From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr1-f67.google.com (mail-wr1-f67.google.com [209.85.221.67]) by dpdk.org (Postfix) with ESMTP id B643210A3 for ; Sat, 19 Jan 2019 13:39:38 +0100 (CET) Received: by mail-wr1-f67.google.com with SMTP id s12so18198558wrt.4 for ; Sat, 19 Jan 2019 04:39:38 -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=3+1s/f2MJZNFx+4bwvp7RJjhrAHIk6RLULfoBcQ/P+4=; b=UNpWjJiVVVmzTsO9jtHl4StUPlZpFb5htZASKTNlqit2Fn5mMJQbwr+OYE6cSu2xYJ d7OUr42jjZ8wZ3J5I3vmsgawgwqs0u3s4OcgjiQ9n1Ms+HCwvZXon7NH/spUqpvAK9pU e6iMj5ByJqLRwIhF6Ls2F2j9JFrANWtEP6Dwdbxvlm8/HGGsSHG0qa66AdJsPcTrcPOG L7RmjUHxb8HYJWO7cLrqSJK3AvyRwgKOJoHdoLJRKwWBEVP9WSbQRjU8qh6xbpJKgmS3 TD+GOqNRycc705CA4fyKWL+cqepqgsK4KjWLu0c57ZMcHPkHORgf2X+fkfVuMjZT2/a/ Z+3A== 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=3+1s/f2MJZNFx+4bwvp7RJjhrAHIk6RLULfoBcQ/P+4=; b=KhUBzoO35AA2aj+SIJUnjwIPDktpvXCyo3a1ifsMcps5j4bO/4WV5w86i39enBqn/c I1QWIvc6nGLTUrJOsvD0uWaxQ7XeQaumuYV9l6ZC4u12iJS1MtJ953XvaNd5psDqOkQq tdHFb2NGmHNoo3yHf5yN5WW51Xa8zU3Ye4fkd7p+u0P8bOA7yHav4VTfmL9Jpe8JDsLh o69cyAgoDpRNl7DzgOeDRMsG/EwpoN/K9QV7CU4sUIWDS2CxiB4KbHT5B8s+KdibpND7 EvDjBjda1B8N1Ot0eop6E7NNGUMjWQBZxlaabpA6+pQz9UnQyMaFpvq1RCj3KsgeC6Kw rTsA== X-Gm-Message-State: AJcUukdrDH+KEUlMNAb67qvv5rR0ypbfAayfnmIj48Q6q91jVM92huK1 kUxQagBvWvND/HPfo8/xHRamwJNg X-Google-Smtp-Source: ALg8bN4SOMUIYrcdT50oWgOOoFyX0takukV+Rn2z9rw5+AWSDO1bd+g4YKN4L/6jbyLdeQMw2kcUOg== X-Received: by 2002:adf:f984:: with SMTP id f4mr20710274wrr.234.1547901578320; Sat, 19 Jan 2019 04:39:38 -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 o4sm85873541wrq.66.2019.01.19.04.39.37 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Sat, 19 Jan 2019 04:39:37 -0800 (PST) From: Rami Rosen To: dts@dpdk.org Cc: Rami Rosen Date: Sat, 19 Jan 2019 14:39:32 +0200 Message-Id: <20190119123932.10318-1-ramirose@gmail.com> X-Mailer: git-send-email 2.19.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dts] [PATCH] tests/jumboframes: fix a typo 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:38 -0000 Signed-off-by: Rami Rosen --- tests/TestSuite_jumboframes.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/TestSuite_jumboframes.py b/tests/TestSuite_jumboframes.py index cbb284d..c1082f0 100644 --- a/tests/TestSuite_jumboframes.py +++ b/tests/TestSuite_jumboframes.py @@ -171,8 +171,8 @@ class TestJumboframes(TestCase): def test_jumboframes_normal_jumbo(self): """ - When jumbo frame supported, this case is to verify that the normal size - packet forwrding should be support correct. + When jumbo frame is supported, this case is to verify that the normal size + packet forwarding should be supported correctly. """ self.pmdout.start_testpmd("Default", "--max-pkt-len=%s --port-topology=loop --tx-offloads=0x8000" % (ETHER_JUMBO_FRAME_MTU)) self.dut.send_expect("set fwd mac", "testpmd> ") @@ -227,7 +227,7 @@ class TestJumboframes(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.tester.send_expect("ifconfig %s mtu %s" % (self.tester.get_interface(self.tester.get_local_port(self.rx_port)), ETHER_STANDARD_MTU), "# ") -- 2.19.2