From patchwork Thu Feb 20 14:36:22 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Steven Rostedt X-Patchwork-Id: 11394243 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id E3B3192A for ; Thu, 20 Feb 2020 14:36:26 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id CB6172465D for ; Thu, 20 Feb 2020 14:36:26 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728231AbgBTOgY (ORCPT ); Thu, 20 Feb 2020 09:36:24 -0500 Received: from mail.kernel.org ([198.145.29.99]:45578 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728056AbgBTOgY (ORCPT ); Thu, 20 Feb 2020 09:36:24 -0500 Received: from gandalf.local.home (cpe-66-24-58-225.stny.res.rr.com [66.24.58.225]) (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 7C1E4207FD for ; Thu, 20 Feb 2020 14:36:23 +0000 (UTC) Date: Thu, 20 Feb 2020 09:36:22 -0500 From: Steven Rostedt To: Linux Trace Devel Subject: [PATCH] trace-cmd: Add output to show "make test" Message-ID: <20200220093622.6df7dafc@gandalf.local.home> X-Mailer: Claws Mail 3.17.3 (GTK+ 2.24.32; x86_64-pc-linux-gnu) MIME-Version: 1.0 Sender: linux-trace-devel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-trace-devel@vger.kernel.org From: "Steven Rostedt (VMware)" The unit tests are made with "make test". In order to let developers know of this option, have it displayed when just "make" is used. Signed-off-by: Steven Rostedt (VMware) Acked-by: Tzvetomir Stoyanov (VMware) --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 60cd1570..a3facaa9 100644 --- a/Makefile +++ b/Makefile @@ -364,6 +364,7 @@ $(obj)/lib/traceevent/plugins/trace_python_dir: force show_gui_make: @echo "Note: to build the gui, type \"make gui\"" @echo " to build man pages, type \"make doc\"" + @echo " to build unit tests, type \"make test\"" PHONY += show_gui_make