From patchwork Tue Feb 22 05:17:54 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lingli Chen X-Patchwork-Id: 107925 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 2DDC8A034E; Tue, 22 Feb 2022 06:18:03 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id ED78C40DF4; Tue, 22 Feb 2022 06:18:02 +0100 (CET) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by mails.dpdk.org (Postfix) with ESMTP id 276F54068C for ; Tue, 22 Feb 2022 06:18:00 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1645507081; x=1677043081; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=7E9YmmyXRvCtjkIlMiz3cmq7AGQD/ZqPsI9M86y/7Yw=; b=ffGCzu0S5xYe+ZqGQ5XM3pTraEF+3OA+BMxgPANrqAl9pRCcrRN6g+1o b0Faf7MQwFk8z+jlcdibc2iSxh+VlpNUCFKb8JBGJnO4q17eBdT1iC5gX 4CrphVLl6IeEcNEsXMROVSeXsUuIieFuL0pZvUU5LyZjbC/INcKWCpGKJ MkQZlzWGVR1lu2pXGgoqUYc9P06puxHIDS1uGh1fkjOK1MCd8+BrZL5Ym Txxwm/3FQIAZessaBdxcxj7l0N+UCgjmpXDANU1JH593N4OPYgD3FYYFy Zsnnp8agJ+n2Pxj+nzN9kEfReu7rIjyJIjg1JqWF8lcSMgUOfX9eyooPV w==; X-IronPort-AV: E=McAfee;i="6200,9189,10265"; a="251381446" X-IronPort-AV: E=Sophos;i="5.88,387,1635231600"; d="scan'208";a="251381446" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Feb 2022 21:18:00 -0800 X-IronPort-AV: E=Sophos;i="5.88,387,1635231600"; d="scan'208";a="636876636" Received: from unknown (HELO localhost.localdomain) ([10.239.251.222]) by fmsmga002-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Feb 2022 21:17:58 -0800 From: Lingli Chen To: dts@dpdk.org Cc: Lingli Chen Subject: [dts][PATCH V1] tests/unit_tests_mempool: mempool_perf_autotest increase timeout Date: Tue, 22 Feb 2022 13:17:54 +0800 Message-Id: <20220222051754.1387214-1-linglix.chen@intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dts-bounces@dpdk.org According to dpdk commit ed579e50c66d("mempool: test performance with constant n") A few more test cases were added. Increased the timeout value in memory pool performance autotest Signed-off-by: Lingli Chen --- tests/TestSuite_unit_tests_mempool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_unit_tests_mempool.py b/tests/TestSuite_unit_tests_mempool.py index 455f4322..11b41604 100644 --- a/tests/TestSuite_unit_tests_mempool.py +++ b/tests/TestSuite_unit_tests_mempool.py @@ -84,7 +84,7 @@ class TestUnitTestsMempool(TestCase): eal_params = self.dut.create_eal_parameters(cores=self.cores) app_name = self.dut.apps_name['test'] self.dut.send_expect(app_name + eal_params,"R.*T.*E.*>.*>", 60) - out = self.dut.send_expect("mempool_perf_autotest", "RTE>>", 2000) + out = self.dut.send_expect("mempool_perf_autotest", "RTE>>", 4500) self.dut.send_expect("quit", "# ") self.verify("Test OK" in out, "Test failed")