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=-5.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,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 DC580C49EA3 for ; Mon, 28 Jun 2021 15:44:20 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id BFCDD60233 for ; Mon, 28 Jun 2021 15:44:20 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S237681AbhF1Pqo (ORCPT ); Mon, 28 Jun 2021 11:46:44 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:51714 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S237473AbhF1Pp6 (ORCPT ); Mon, 28 Jun 2021 11:45:58 -0400 Received: from desiato.infradead.org (desiato.infradead.org [IPv6:2001:8b0:10b:1:d65d:64ff:fe57:4e05]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id CA0D1C08E6E1 for ; Mon, 28 Jun 2021 08:08:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=desiato.20200630; h=In-Reply-To:Content-Type:MIME-Version: References:Message-ID:Subject:Cc:To:From:Date:Sender:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description; bh=ECS93oVACGoW2Djx/trGDMcvaVrMlZKu4JBZCoodPpI=; b=UTtsFjfEV2zrd+pLBQ9VWbkgbT HBFnw4PV3Rda4NrTAwQ6ZWdWnoGgMSd5D+r+6D/IBlFN9EtI4lZKN9JYM1W1Vi8uSjBz2ww9uQowN ErYr3WKITCxZOqKefulghoQNYMz6oF7aHI9lc6F6S28m+xFZIupsgIuYBsDzDsna2P07EQ8kzBd/Y sSQMOWhhpJowPbtEpegFGtOCplIzcH9vMNYSmIhhTD4pJpyvVnv3f51K7ZmcrW0EjMmwpCEsABGyv zTJurYdTcC7bMJeCLOhcX+O9JcyR58Y0j8gvMBbDXCFmVgCqJOhWFISiMYQDKWBmxMSW1GeR5RFsq k502zBJw==; Received: from j217100.upc-j.chello.nl ([24.132.217.100] helo=noisy.programming.kicks-ass.net) by desiato.infradead.org with esmtpsa (Exim 4.94.2 #2 (Red Hat Linux)) id 1lxsrp-00CaVa-WE; Mon, 28 Jun 2021 15:08:11 +0000 Received: from hirez.programming.kicks-ass.net (hirez.programming.kicks-ass.net [192.168.1.225]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (Client did not present a certificate) by noisy.programming.kicks-ass.net (Postfix) with ESMTPS id 6C3F23005C9; Mon, 28 Jun 2021 17:08:09 +0200 (CEST) Received: by hirez.programming.kicks-ass.net (Postfix, from userid 1000) id 4E25B2041E874; Mon, 28 Jun 2021 17:08:09 +0200 (CEST) Date: Mon, 28 Jun 2021 17:08:09 +0200 From: Peter Zijlstra To: Steven Rostedt Cc: Masami Hiramatsu , LKML , Shuah Khan , Shuah Khan Subject: Re: selftest/ftrace: Add test results to "-h" help text to ftracetest Message-ID: References: <20210628095015.4b8b1cb9@oasis.local.home> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210628095015.4b8b1cb9@oasis.local.home> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Jun 28, 2021 at 09:50:15AM -0400, Steven Rostedt wrote: > +echo " UNRESOLVED The test produced indeterminate results. (e.g. interrupted)" > +echo " UNSUPPORTED The test failed because of lack of feature." So in my case I've seen both these as a result of .config fails. Specifically test.d/kprobe/kprobe_module.tc returns exit_unresolved when it can't load the module (because it doesn't exist). Also, would it be at all possible to, for both these options, always print the missing CONFIG_symbol ? The above test actually has an echo for it, but I've never seen the result of that appear.