Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751255AbdFBVn6 (ORCPT ); Fri, 2 Jun 2017 17:43:58 -0400 Received: from ec2-52-27-115-49.us-west-2.compute.amazonaws.com ([52.27.115.49]:38105 "EHLO osg.samsung.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1750971AbdFBVn5 (ORCPT ); Fri, 2 Jun 2017 17:43:57 -0400 Subject: Re: [PATCH] selftests: sync: Skip the test if kernel support is not found To: Michael Ellerman Cc: linux-kselftest@vger.kernel.org, emilio.lopez@collabora.co.uk, gustavo.padovan@collabora.com, linux-kernel@vger.kernel.org, fathi.boudra@linaro.org, Shuah Khan , Shuah Khan References: <1496227215-16371-1-git-send-email-mpe@ellerman.id.au> From: Shuah Khan Message-ID: <970cc692-8702-dabf-a6eb-d004d9280a2f@osg.samsung.com> Date: Fri, 2 Jun 2017 15:43:53 -0600 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.1.1 MIME-Version: 1.0 In-Reply-To: <1496227215-16371-1-git-send-email-mpe@ellerman.id.au> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1421 Lines: 52 On 05/31/2017 04:40 AM, Michael Ellerman wrote: > The "Sync framework" test doesn't work if the kernel has no support, > obviously. Rather than reporting a failure, check for the kernel support > by looking for /sys/kernel/debug/sync/sw_sync, and if not found skip the > test. > > Signed-off-by: Michael Ellerman Thanks. Applied to linux-kselftest next for 4.13-rc1 -- Shuah > --- > tools/testing/selftests/sync/sync_test.c | 13 +++++++++++++ > 1 file changed, 13 insertions(+) > > diff --git a/tools/testing/selftests/sync/sync_test.c b/tools/testing/selftests/sync/sync_test.c > index 9ea08d9f0b13..62fa666e501a 100644 > --- a/tools/testing/selftests/sync/sync_test.c > +++ b/tools/testing/selftests/sync/sync_test.c > @@ -29,6 +29,7 @@ > #include > #include > #include > +#include > #include > > #include "synctest.h" > @@ -52,10 +53,22 @@ static int run_test(int (*test)(void), char *name) > exit(test()); > } > > +static int sync_api_supported(void) > +{ > + struct stat sbuf; > + > + return 0 == stat("/sys/kernel/debug/sync/sw_sync", &sbuf); > +} > + > int main(void) > { > int err = 0; > > + if (!sync_api_supported()) { > + printf("SKIP: Sync framework not supported by kernel\n"); > + return 0; > + } > + > printf("[RUN]\tTesting sync framework\n"); > > err += RUN_TEST(test_alloc_timeline); >