From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.6 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id DF18BC35E04 for ; Tue, 25 Feb 2020 15:30:55 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id A8330218AC for ; Tue, 25 Feb 2020 15:30:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1582644655; bh=kG6/e4tv0JSdzPnvKW6RLYdz7+2k3l6uyPjIxQXp54M=; h=Subject:To:Cc:References:From:Date:In-Reply-To:List-ID:From; b=d1XoWSbRBuUxAVpNTloKrEBu73cpKGNifplaAw6t1W6Q0V+V8Wup1TYnP4O4ZHoH3 AtuRE5ineRgnxmPX4HCMYnHjyBM30QG0Q1dv5sXtoolEDbVuttFL20L3zPjaIQKIzE jbjUWyxY3sO6uWEeBwPnGLF0L1dmMuQzaedx57ZU= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731096AbgBYPay (ORCPT ); Tue, 25 Feb 2020 10:30:54 -0500 Received: from mail.kernel.org ([198.145.29.99]:35906 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728096AbgBYPay (ORCPT ); Tue, 25 Feb 2020 10:30:54 -0500 Received: from [192.168.1.112] (c-24-9-64-241.hsd1.co.comcast.net [24.9.64.241]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 736482176D; Tue, 25 Feb 2020 15:30:53 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1582644653; bh=kG6/e4tv0JSdzPnvKW6RLYdz7+2k3l6uyPjIxQXp54M=; h=Subject:To:Cc:References:From:Date:In-Reply-To:From; b=OLq5Dm5crc3o1Nv3/eSHYV+yP9MBux2H2f8FAXc+yBeysgVRMhGFFpUgxOmG9oRq7 5Bg1fwZqTKgbuq48vtptGnP3dEsfGhYuHyIURS+N/ZmV30mo2r3etj6ldEbaP/eIPl leLeT3Zb7LKZLiH+4DinQnOCT1c/1B8c2+3bMYTg= Subject: Re: [PATCH] selftests/timers: Turn off timeout setting To: Po-Hsu Lin , linux-kselftest@vger.kernel.org Cc: linux-kernel@vger.kernel.org, sboyd@kernel.org, tglx@linutronix.de, john.stultz@linaro.org, shuah References: <20200225101809.9986-1-po-hsu.lin@canonical.com> From: shuah Message-ID: Date: Tue, 25 Feb 2020 08:30:41 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.4.1 MIME-Version: 1.0 In-Reply-To: <20200225101809.9986-1-po-hsu.lin@canonical.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2/25/20 3:18 AM, Po-Hsu Lin wrote: > Tests in timers especially nsleep-lat, set-timer-lat, > inconsistency-check and raw_skew these 4 tests can take longer than > the default 45 seconds that introduced in commit 852c8cbf > (selftests/kselftest/runner.sh: Add 45 second timeout per test) to run. > > Disable the timeout setting for timers instead of looking for an proper > value to make it more general. > > Signed-off-by: Po-Hsu Lin > --- > tools/testing/selftests/timers/settings | 1 + > 1 file changed, 1 insertion(+) > create mode 100644 tools/testing/selftests/timers/settings > > diff --git a/tools/testing/selftests/timers/settings b/tools/testing/selftests/timers/settings > new file mode 100644 > index 0000000..e7b9417 > --- /dev/null > +++ b/tools/testing/selftests/timers/settings > @@ -0,0 +1 @@ > +timeout=0 > What happens when you disable this and set it to 0? How long does the rest run in this case? Can you add the details to the change log please. thanks, -- Shuah