From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm1-f66.google.com (mail-wm1-f66.google.com [209.85.128.66]) by dpdk.org (Postfix) with ESMTP id 9BD0E1B52A for ; Mon, 11 Feb 2019 07:05:47 +0100 (CET) Received: by mail-wm1-f66.google.com with SMTP id p6so14486557wmc.1 for ; Sun, 10 Feb 2019 22:05:47 -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; bh=9AmNf1u46lERwVObFcQ5ZZPR2sLUCjltpFzzalov40Q=; b=a2yNppJTXRra8lcyfYIj5sm6vdEMCX3OwCWed3hpQW39epJ6lc+ibpQJc/AYKpleDr I5LM03vOJCQQ80fTOvcIUt67wOQw4ERNOyE4G8TdQGQtgcMh1NgikWqllNnS9yCBb5gh 45BQD4xkrhAsgKzZBugRCjXzRvlCMbNdmUZVJe5xSjg12yjmuKsT7scfiG7QcofJfOjr tiRGPlV7UtOIKQ12kvTOPZOp3qWG/bovZXgkEwTYIZbac33d5tdosXRjbH8t9dVoxE3s XBSJhA4uP63ka7VV6MCKjmANPiWulxjfN/NLtG7SpvOXM2qhzOEq/lrJWK67FhFHPkKd FkjQ== 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; bh=9AmNf1u46lERwVObFcQ5ZZPR2sLUCjltpFzzalov40Q=; b=IdVmdAqcMC/oyx5lCeYq3bYfu1NMbaTod1pQGNBwtQGkKqOMS1g/YPiQwiuz2GrYu1 lj0gvntl65Fa6xt9Or9ftTc/9T3aFzuK9XpcxsolaBa2g3yvl2wqxK64vpLEa2k8qToI usdg9xCLg/jKD+B8oUnQjKnhVDr/lhjhk7aPj4YJZvio5V0dbWrq1k7JfNeuBy5vtsV1 FPQ5vXYmu38Ku2LQbXHeSkHtzgjvY7DF2XtL1f2ht4D1qSja2KkMxzVzERebkhnZH2yI dQJ1pMkf2k+atDJHXZ0Lqj+2NCpJ+VKwAaF9LdeviM77+KoNx4X/CfWEEuHezdDnnMTZ 1+iA== X-Gm-Message-State: AHQUAubN+/lHaq5JSEQKAA89ZocFPX+qohzJZL3tx8n1G8HoOHBkAnIB UeyyUv9dSh4CdazGCxAH7KuLzgSUNL0= X-Google-Smtp-Source: AHgI3IbqS+dnxRCagq3isWRv16XK5sW05DqBzEzKA9U3UT4FqXROeGaLoejgPCUEOJ+O7GxtMwn8/g== X-Received: by 2002:a5d:4e08:: with SMTP id p8mr27327543wrt.235.1549865147091; Sun, 10 Feb 2019 22:05:47 -0800 (PST) Received: from herc_dut.netio.cloud ([212.199.245.54]) by smtp.gmail.com with ESMTPSA id t5sm8000952wmg.43.2019.02.10.22.05.46 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 10 Feb 2019 22:05:46 -0800 (PST) From: Rami Rosen To: dts@dpdk.org Cc: Rami Rosen Date: Mon, 11 Feb 2019 08:05:30 +0200 Message-Id: <1549865130-50670-1-git-send-email-ramirose@gmail.com> X-Mailer: git-send-email 1.8.3.1 Subject: [dts] [PATCH] tests/TestSuite_vhost_pmd_xstats: 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: Mon, 11 Feb 2019 06:05:47 -0000 This patch fixes typos in TestSuite_vhost_pmd_xstats: 1) In test_stability(), the time interval of the test should be 30 minutes instead of 2 minutes. 2) Xstats should be xstats (to be consistent with the rest of this module) Signed-off-by: Rami Rosen --- tests/TestSuite_vhost_pmd_xstats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 tests/TestSuite_vhost_pmd_xstats.py diff --git a/tests/TestSuite_vhost_pmd_xstats.py b/tests/TestSuite_vhost_pmd_xstats.py old mode 100644 new mode 100755 index c65f824..e33b342 --- a/tests/TestSuite_vhost_pmd_xstats.py +++ b/tests/TestSuite_vhost_pmd_xstats.py @@ -208,7 +208,7 @@ class TestVhostPmdXstats(TestCase): def test_stability(self): """ Verify stability case with multiple queues for Vhost PMD xstats - Send packets for 30 minutes, check the Xstats still can work correctly + Send packets for 2 minutes, check the xstats still can work correctly """ self.scapy_num = 0 self.prepare_start() -- 1.8.3.1