From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm1-f68.google.com (mail-wm1-f68.google.com [209.85.128.68]) by dpdk.org (Postfix) with ESMTP id 2DC5E1B460 for ; Fri, 15 Feb 2019 11:53:34 +0100 (CET) Received: by mail-wm1-f68.google.com with SMTP id v26so9156101wmh.3 for ; Fri, 15 Feb 2019 02:53:34 -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=YMp9KEB5qMwGxoNUEhVjvIUWjlNkZdku8/MAlxRsKvg=; b=VtQiw1oUzvyCPys0C3pH9hntvj4Di30eYcVe8UH0ATuLGs9WoX3EGIFflMxjtCfRBI 97ZvoJaF+JAXdqqEBYpVcD4IxXEChyyjDb8VN5fojpvczoIQuROPuEov1e82SkCYI/Ox kLAZrJOFS1f8EjpTXHRsmF5BHpS553iNAdg39WhEt9ekHvq7x70kel9ycEHfjZSfYMGI ++8fub+FaX4LY6ldh8M7IWI4UG16KnVlaOJdzPi7cbNTNWsZ21ybrzbi6Qp5Jl3VYNT3 pjUkcXN9DUNv7r6usn2f/slPArec7QJpYGceXycopHpuJfzrjcFnawlceol60Sg2tYJs KZ/A== 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=YMp9KEB5qMwGxoNUEhVjvIUWjlNkZdku8/MAlxRsKvg=; b=T4bBBDB1bbhdJSe3pVhLWElPvFOQ5Q9QA7JbcAZtky6aFfxBgyrTuudRCvoE5iHOEw pjnn7/tTMMmLGGXGdsW166qjCcO7gHjd5HxCJSrqYrOxtZPM+9hlOtCAjJxsnSNhKOI+ d5raKs8+zRJk+Je5pt88vPVAoMF40/6s2UPzt3Xxy+NttmMggFQ8iBCIDL5DT5OId5Wu bc1q5+uTKC56r8GVZ2GtPLT21MQr2THZfPd6Bb+POscAZ4D+zCcOvvSuVdGBGvgoJ0W6 HniKVyNQXcplzvjyDn8cacwWXvPKoJcpr1KR10eQ8r+3swDkmV8A+/ed0YMwpZdIKf0K xFdg== X-Gm-Message-State: AHQUAuYf9VWzbcHOfSdk87cTuFYzP7/NoJ9oOtRua78YZX5TityAk3cL RDtJO9Rz+gjQrdeBmRGMTmupjUsB X-Google-Smtp-Source: AHgI3IZSm7T8p6j0pksVIM8LcCHKHXPVcBIFDoLWiMJ1LTaUYjhycIKZRDmwX4nqy4YPd4uYn5ih5g== X-Received: by 2002:a1c:342:: with SMTP id 63mr5809070wmd.34.1550228013631; Fri, 15 Feb 2019 02:53:33 -0800 (PST) Received: from localhost.localdomain (bzq-109-66-107-92.red.bezeqint.net. [109.66.107.92]) by smtp.gmail.com with ESMTPSA id o5sm5597971wmh.12.2019.02.15.02.53.32 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Fri, 15 Feb 2019 02:53:33 -0800 (PST) From: Rami Rosen To: dts@dpdk.org Cc: Rami Rosen Date: Fri, 15 Feb 2019 12:53:22 +0200 Message-Id: <20190215105322.5605-1-ramirose@gmail.com> X-Mailer: git-send-email 2.19.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dts] [PATCH] tests/vhost_multi_queue_qemu: fix a minor 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: Fri, 15 Feb 2019 10:53:34 -0000 This patch fixes a typo in vhost_multi_queue_qemu.py. Signed-off-by: Rami Rosen --- tests/TestSuite_vhost_multi_queue_qemu.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_vhost_multi_queue_qemu.py b/tests/TestSuite_vhost_multi_queue_qemu.py index e310a96..1232cf3 100644 --- a/tests/TestSuite_vhost_multi_queue_qemu.py +++ b/tests/TestSuite_vhost_multi_queue_qemu.py @@ -172,7 +172,7 @@ class TestVhostUserOneCopyOneVm(TestCase): def send_and_verify(self, verify_type): """ - Verify the virtio-pmd can recive the data before/after change queue size + Verify the virtio-pmd can receive the data before/after change queue size While verify_type is "vhost queue = virtio queue", the vhost should forward all set of data While verify_type is "vhost queue < virtio queue", the vhost should forward all set of data While verify_type is "vhost queue > virtio queue", the vhost should forward at least one set of data -- 2.19.2