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,USER_AGENT_SANE_1 autolearn=ham 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 53F1FC49ED7 for ; Mon, 16 Sep 2019 16:48:40 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 1BABD214D9 for ; Mon, 16 Sep 2019 16:48:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1568652520; bh=9IgIL3nTOl+AnAnycBph4EY1UvcF4YxY8jH5un/5EXI=; h=Subject:To:Cc:References:From:Date:In-Reply-To:List-ID:From; b=rxR6yAaXdMTiQu8PAs7bieLzomfSSJBV9zsmnxF+IvD6U5cJKTs1wrRYDuDxOYP06 jCxosHB5VzX+8kdlbtU/oaWkHkG222RaWexMotXI3oD+1VFe5mbSyTFywJriulB827 h7IsYWEPNhkH8YpJBxDM5xKaT9YGXZIt78rkUrOo= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2390144AbfIPQsj (ORCPT ); Mon, 16 Sep 2019 12:48:39 -0400 Received: from mail.kernel.org ([198.145.29.99]:40914 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2390140AbfIPQsj (ORCPT ); Mon, 16 Sep 2019 12:48:39 -0400 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 659D2214D9; Mon, 16 Sep 2019 16:48:38 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1568652518; bh=9IgIL3nTOl+AnAnycBph4EY1UvcF4YxY8jH5un/5EXI=; h=Subject:To:Cc:References:From:Date:In-Reply-To:From; b=VodzYAg+UfPWq3WKHJnIejPR+sXO1G3gL05enYHwjXQdmy157ZCKabefl3UKdQ+pj 08IHFY3fe3j/9u/A4KTLjoPITPjFJRQuBt8lHDKCcK2jMZRCdj/op5ySrIs4D7Bk4s toGVj5lFUB8wGCmy0tJguhSo7eXw1sM1kqg5lqRA= Subject: Re: [PATCH 6/6] selftests: add clone3 to TARGETS To: Eugene Syromiatnikov , linux-kernel@vger.kernel.org, Christian Brauner , linux-kselftest@vger.kernel.org Cc: Adrian Reber , shuah References: From: shuah Message-ID: <8bbd08bf-3500-40c7-ca15-06d0c84b596f@kernel.org> Date: Mon, 16 Sep 2019 10:48:37 -0600 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.8.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-kselftest-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kselftest@vger.kernel.org On 9/10/19 6:03 AM, Eugene Syromiatnikov wrote: > * tools/testing/selftests/Makefile (TARGETS): Add clone3. Again. No filenames in the commit log. Please add more detail. "Adding clone3() tests to kselftest default run and details on what this tests" This will be helpful to users. > > Signed-off-by: Eugene Syromiatnikov > --- > tools/testing/selftests/Makefile | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/tools/testing/selftests/Makefile b/tools/testing/selftests/Makefile > index 25b43a8c..05163e4 100644 > --- a/tools/testing/selftests/Makefile > +++ b/tools/testing/selftests/Makefile > @@ -4,6 +4,7 @@ TARGETS += bpf > TARGETS += breakpoints > TARGETS += capabilities > TARGETS += cgroup > +TARGETS += clone3 > TARGETS += cpufreq > TARGETS += cpu-hotplug > TARGETS += drivers/dma-buf > Please make sure the test doesn't hang and all the use-cases listed in the kselftest.rst are supported. make kselftest make -C tools/testing/selftests O= and KBUILD_OUTPUT cases as well as running make directly in the clode3 dir. Please include test output and usage instructions if any to this commit log as this is the patch that enables it in the default run. thanks, -- Shuah