From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephen Boyd Subject: Re: [RFC v1 2/6] arch: um: add linker section for KUnit test suites Date: Tue, 17 Dec 2019 00:21:34 -0800 Message-ID: <20191217082134.DAC792072D@mail.kernel.org> References: <20191216220555.245089-1-brendanhiggins@google.com> <20191216220555.245089-3-brendanhiggins@google.com> Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Return-path: In-Reply-To: <20191216220555.245089-3-brendanhiggins@google.com> Sender: linux-kernel-owner@vger.kernel.org To: akpm@linux-foundation.org, alan.maguire@oracle.com, anton.ivanov@cambridgegreys.com, arnd@arndb.de, davidgow@google.com, jdike@addtoit.com, keescook@chromium.org, richard@nod.at, rppt@linux.ibm.com, skhan@linuxfoundation.org, yzaikin@google.com Cc: gregkh@linuxfoundation.org, logang@deltatee.com, mcgrof@kernel.org, knut.omang@oracle.com, linux-um@lists.infradead.org, linux-arch@vger.kernel.org, linux-kselftest@vger.kernel.org, kunit-dev@googlegroups.com, linux-kernel@vger.kernel.org, Brendan Higgins List-Id: linux-arch.vger.kernel.org Quoting Brendan Higgins (2019-12-16 14:05:51) > Add a linker section to UML where KUnit can put references to its test > suites. This patch is an early step in transitioning to dispatching all > KUnit tests from a centralized executor rather than having each as its > own separate late_initcall. >=20 > Signed-off-by: Brendan Higgins > --- Reviewed-by: Stephen Boyd 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=-4.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE, SPF_PASS autolearn=no 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 2592DC43603 for ; Tue, 17 Dec 2019 08:21:36 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id E12E62146E for ; Tue, 17 Dec 2019 08:21:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1576570896; bh=MgaLGlr0QIaprsB/DrVV7RSPcRWsv/bXdTq+DK1ELwo=; h=In-Reply-To:References:Cc:To:From:Subject:Date:List-ID:From; b=HuFYWLk0+WQTNZbtt4qvnlzYNCO3xOCp1oX/+ajnnsZ9Cgk87wcxRrLCOrr+WOIgF FaGs8ItkOmYZNMjFMkFtbJNa+OU+o5gCgwdGFMD0hZXqZVFk9egL2Z7nipBIOCrVSV 32ILjFgTs6OlFb4CSVTZuQfIXqtyIJu811o9nepU= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1725870AbfLQIVf (ORCPT ); Tue, 17 Dec 2019 03:21:35 -0500 Received: from mail.kernel.org ([198.145.29.99]:35572 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725805AbfLQIVf (ORCPT ); Tue, 17 Dec 2019 03:21:35 -0500 Received: from kernel.org (unknown [104.132.0.74]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id DAC792072D; Tue, 17 Dec 2019 08:21:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1576570895; bh=MgaLGlr0QIaprsB/DrVV7RSPcRWsv/bXdTq+DK1ELwo=; h=In-Reply-To:References:Cc:To:From:Subject:Date:From; b=jBrtAlUHtDr4ZE5xHAyFerxNZDo5qWLLJtZNUNHBYEokpF3cjHwjyea76kUMwEZeS 4PDT2wyNgKPfdoI3acvAI9hNPLQ2k3OHZPIa0IoxOj1MjEAPmj33jVA0TgsT5CdMVy iCAWMb7bRkHZbZgoafHMRJOQasFCKmfHSnYdkjsQ= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable In-Reply-To: <20191216220555.245089-3-brendanhiggins@google.com> References: <20191216220555.245089-1-brendanhiggins@google.com> <20191216220555.245089-3-brendanhiggins@google.com> Cc: gregkh@linuxfoundation.org, logang@deltatee.com, mcgrof@kernel.org, knut.omang@oracle.com, linux-um@lists.infradead.org, linux-arch@vger.kernel.org, linux-kselftest@vger.kernel.org, kunit-dev@googlegroups.com, linux-kernel@vger.kernel.org, Brendan Higgins To: Brendan Higgins , akpm@linux-foundation.org, alan.maguire@oracle.com, anton.ivanov@cambridgegreys.com, arnd@arndb.de, davidgow@google.com, jdike@addtoit.com, keescook@chromium.org, richard@nod.at, rppt@linux.ibm.com, skhan@linuxfoundation.org, yzaikin@google.com From: Stephen Boyd Subject: Re: [RFC v1 2/6] arch: um: add linker section for KUnit test suites User-Agent: alot/0.8.1 Date: Tue, 17 Dec 2019 00:21:34 -0800 Message-Id: <20191217082134.DAC792072D@mail.kernel.org> Sender: linux-kselftest-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kselftest@vger.kernel.org Quoting Brendan Higgins (2019-12-16 14:05:51) > Add a linker section to UML where KUnit can put references to its test > suites. This patch is an early step in transitioning to dispatching all > KUnit tests from a centralized executor rather than having each as its > own separate late_initcall. >=20 > Signed-off-by: Brendan Higgins > --- Reviewed-by: Stephen Boyd From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.kernel.org ([198.145.29.99]) by bombadil.infradead.org with esmtps (Exim 4.92.3 #3 (Red Hat Linux)) id 1ih86p-0002Gk-9Q for linux-um@lists.infradead.org; Tue, 17 Dec 2019 08:21:36 +0000 MIME-Version: 1.0 In-Reply-To: <20191216220555.245089-3-brendanhiggins@google.com> References: <20191216220555.245089-1-brendanhiggins@google.com> <20191216220555.245089-3-brendanhiggins@google.com> From: Stephen Boyd Subject: Re: [RFC v1 2/6] arch: um: add linker section for KUnit test suites Date: Tue, 17 Dec 2019 00:21:34 -0800 Message-Id: <20191217082134.DAC792072D@mail.kernel.org> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-um" Errors-To: linux-um-bounces+geert=linux-m68k.org@lists.infradead.org To: Brendan Higgins , akpm@linux-foundation.org, alan.maguire@oracle.com, anton.ivanov@cambridgegreys.com, arnd@arndb.de, davidgow@google.com, jdike@addtoit.com, keescook@chromium.org, richard@nod.at, rppt@linux.ibm.com, skhan@linuxfoundation.org, yzaikin@google.com Cc: linux-arch@vger.kernel.org, knut.omang@oracle.com, gregkh@linuxfoundation.org, linux-um@lists.infradead.org, linux-kernel@vger.kernel.org, mcgrof@kernel.org, linux-kselftest@vger.kernel.org, logang@deltatee.com, Brendan Higgins , kunit-dev@googlegroups.com Quoting Brendan Higgins (2019-12-16 14:05:51) > Add a linker section to UML where KUnit can put references to its test > suites. This patch is an early step in transitioning to dispatching all > KUnit tests from a centralized executor rather than having each as its > own separate late_initcall. > > Signed-off-by: Brendan Higgins > --- Reviewed-by: Stephen Boyd _______________________________________________ linux-um mailing list linux-um@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-um