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=-0.7 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED 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 B9CE8C43331 for ; Fri, 6 Sep 2019 16:02:40 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 99DBC2070C for ; Fri, 6 Sep 2019 16:02:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731515AbfIFQCk (ORCPT ); Fri, 6 Sep 2019 12:02:40 -0400 Received: from mail-qk1-f196.google.com ([209.85.222.196]:36518 "EHLO mail-qk1-f196.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730767AbfIFQCk (ORCPT ); Fri, 6 Sep 2019 12:02:40 -0400 Received: by mail-qk1-f196.google.com with SMTP id s18so6130875qkj.3; Fri, 06 Sep 2019 09:02:39 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=D2UnQvaWbnmWdR72EwgKASOHbRdH1J70PBC+fpxUSII=; b=qN7r9oC+bbUMGjwHMWIX43aSLN9cHYy67oJoYdwWS1jmJv4eMaUNmCM55CQhUdcFOm 2JniVTh1PwkCXZflPACkmAHu4EST1btre0/Pcurvh7L8ZIcSW/Y95z0Oer5+4kjUMO5M TVEjCvhs7tHPch0bAQ4Wg9KyP2wqmbXdq12clyHv74DqHod/rrRdMCZHsVtjZT8dVOTX cQ3p7NckH/LPNQB7wIV0BYcZEc0ccwAyiBykoNz3mo87/D2D3CJUu/1a+Iw5SaSAiVlu +m+xaH7LHBLQLyvaBULokv89M7kxnjb8+6oPpFv64xni8qyRCkyLZBHexVX0wDcj/FFq S3qw== X-Gm-Message-State: APjAAAUBW+kk0okMj3QKuVopLpailBNKB8JMgiwKnjLqTEA+l14yY2qw KQr0MZLitKU2GME6bCdozRR4+R7WEo9V+7Jh8OFdsaWA X-Google-Smtp-Source: APXvYqyOQtOjLTWW+COZnxCLc8XDIKJXqxS+DIdZttoPgrH1FkwVKGZoRXS19m2B5VoNat7566rsw+ZN+NUSRyoPhUM= X-Received: by 2002:a37:4fcf:: with SMTP id d198mr9489423qkb.394.1567785759220; Fri, 06 Sep 2019 09:02:39 -0700 (PDT) MIME-Version: 1.0 References: <20190906152800.1662489-1-arnd@arndb.de> <5dfe1bfc-0236-25cf-756b-ce05f7110136@linuxfoundation.org> In-Reply-To: <5dfe1bfc-0236-25cf-756b-ce05f7110136@linuxfoundation.org> From: Arnd Bergmann Date: Fri, 6 Sep 2019 18:02:22 +0200 Message-ID: Subject: Re: [PATCH] kunit: add PRINTK dependency To: Shuah Khan Cc: Brendan Higgins , Greg Kroah-Hartman , Logan Gunthorpe , Stephen Boyd , "open list:KERNEL SELFTEST FRAMEWORK" , kunit-dev@googlegroups.com, "linux-kernel@vger.kernel.org" Content-Type: text/plain; charset="UTF-8" Sender: linux-kselftest-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kselftest@vger.kernel.org On Fri, Sep 6, 2019 at 5:39 PM Shuah Khan wrote: > > config KUNIT > > bool "Enable support for unit tests (KUnit)" > > + depends on PRINTK > > help > > Enables support for kernel unit tests (KUnit), a lightweight unit > > testing and mocking framework for the Linux kernel. These tests are > > > > Hi Arnd, > > This is found and fixed already. I am just about to apply Berndan's > patch that fixes this dependency. All of this vprintk_emit() stuff > is redone. Ok, perfect. Unfortunately I only started testing the coming linux-next release after Stephen went on his break, so I'm missing some updates. Arnd