From patchwork Wed Jun 22 08:59:11 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vijai Kumar K X-Patchwork-Id: 12890320 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 9C260C43334 for ; Wed, 22 Jun 2022 09:01:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1355973AbiFVJBJ (ORCPT ); Wed, 22 Jun 2022 05:01:09 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:56824 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1355762AbiFVJA7 (ORCPT ); Wed, 22 Jun 2022 05:00:59 -0400 X-Greylist: delayed 62 seconds by postgrey-1.37 at lindbergh.monkeyblade.net; Wed, 22 Jun 2022 02:00:58 PDT Received: from esa1.mentor.iphmx.com (esa1.mentor.iphmx.com [68.232.129.153]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 0AA6037A1A for ; Wed, 22 Jun 2022 02:00:57 -0700 (PDT) X-IronPort-AV: E=Sophos;i="5.92,212,1650960000"; d="scan'208";a="80324726" Received: from orw-gwy-01-in.mentorg.com ([192.94.38.165]) by esa1.mentor.iphmx.com with ESMTP; 22 Jun 2022 00:59:55 -0800 IronPort-SDR: KySdSDKmI6Iy4pefWcvfNvXA8f8Q59zSJ3Pjs/PMmzjYdvUk2jMal7vAwkSJ37fGNElRIt417c h3Zyjwb6l+B8cWn4m2TLOtshqJgadkOBIPVVu1D5uhd4WZbHz/KvrpUHmjPCceexdJFxs3iDSp sDZec5/V+EuewjLNBk06BEAv9QAItxo1PhaPGRERcz2/t/TSVVmuJF5EjVY9aF4x5Zmb1CtfaZ GVtNfxw5Bvc1ULikQ7Q+Calv9Wn3/CTfx7mXass6I4bdjp+LzdhPrTZ2dPY752jLGTksigS17p fFE= From: Vijai Kumar K To: , CC: , , Vijai Kumar K Subject: [PATCH] kselftest: mqueue: increase timeout Date: Wed, 22 Jun 2022 14:29:11 +0530 Message-ID: <20220622085911.2292509-1-Vijaikumar_Kanagarajan@mentor.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 X-ClientProxiedBy: SVR-ORW-MBX-09.mgc.mentorg.com (147.34.90.209) To svr-orw-mbx-12.mgc.mentorg.com (147.34.90.212) Precedence: bulk List-ID: X-Mailing-List: linux-kselftest@vger.kernel.org The default kselftest timeout is 45 seconds per test after which run_kselftest marks the test case as failure. Some mqueue perf tests take more than 100s to complete; especially in qemu environment. Increase the timeout to 180 seconds for mqueue. Signed-off-by: Vijai Kumar K --- tools/testing/selftests/mqueue/settings | 1 + 1 file changed, 1 insertion(+) create mode 100644 tools/testing/selftests/mqueue/settings diff --git a/tools/testing/selftests/mqueue/settings b/tools/testing/selftests/mqueue/settings new file mode 100644 index 000000000000..a953c96aa16e --- /dev/null +++ b/tools/testing/selftests/mqueue/settings @@ -0,0 +1 @@ +timeout=180