From patchwork Tue Jan 6 19:43:27 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Shuah Khan X-Patchwork-Id: 5576491 Return-Path: X-Original-To: patchwork-linux-kbuild@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 615E5BF6C3 for ; Tue, 6 Jan 2015 19:49:17 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 8AA5A200E9 for ; Tue, 6 Jan 2015 19:49:16 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 8F0F420221 for ; Tue, 6 Jan 2015 19:49:15 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932950AbbAFTtB (ORCPT ); Tue, 6 Jan 2015 14:49:01 -0500 Received: from resqmta-ch2-02v.sys.comcast.net ([69.252.207.34]:50760 "EHLO resqmta-ch2-02v.sys.comcast.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932941AbbAFTs6 (ORCPT ); Tue, 6 Jan 2015 14:48:58 -0500 Received: from resomta-ch2-17v.sys.comcast.net ([69.252.207.113]) by resqmta-ch2-02v.sys.comcast.net with comcast id cjjv1p00F2TL4Rh01jjwUq; Tue, 06 Jan 2015 19:43:56 +0000 Received: from mail.gonehiking.org ([50.134.149.16]) by resomta-ch2-17v.sys.comcast.net with comcast id cjjt1p0070MU7Qa01jju99; Tue, 06 Jan 2015 19:43:55 +0000 Received: from lorien.internal (lorien-wl.internal [192.168.1.40]) by mail.gonehiking.org (Postfix) with ESMTP id 709C340C1C; Tue, 6 Jan 2015 12:43:54 -0700 (MST) From: Shuah Khan To: mmarek@suse.cz, gregkh@linuxfoundation.org, akpm@linux-foundation.org, rostedt@goodmis.org, mingo@redhat.com, davem@davemloft.net, keescook@chromium.org, tranmanphong@gmail.com, mpe@ellerman.id.au, cov@codeaurora.org, dh.herrmann@gmail.com, hughd@google.com, bobby.prani@gmail.com, serge.hallyn@ubuntu.com, ebiederm@xmission.com, tim.bird@sonymobile.com, josh@joshtriplett.org, koct9i@gmail.com, masami.hiramatsu.pt@hitachi.com Cc: Shuah Khan , linux-kbuild@vger.kernel.org, linux-kernel@vger.kernel.org, linux-api@vger.kernel.org, netdev@vger.kernel.org Subject: [PATCH v4 13/20] selftests/ptrace: add install target to enable test install Date: Tue, 6 Jan 2015 12:43:27 -0700 Message-Id: X-Mailer: git-send-email 2.1.0 In-Reply-To: References: In-Reply-To: References: DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=comcast.net; s=q20140121; t=1420573436; bh=57hbkfgV0gEz6+nPre0tghIMfEgUE6plWKREzqYnEr8=; h=Received:Received:Received:From:To:Subject:Date:Message-Id; b=QSxJselUFJqnM8CbuoPv39ejJSclYyXgUVNe+cmHLnbte021JIGiftsbGhGB/IZRl FgE/tavYm6SaunevB0q2b7P3JyWdiQCuIxfdgXCegCDatCg+tJgOI3zpzaWAiETd8F YoNz6VHxmVxILyRVMRGBiVh99sl4swrSc/Ok0/nZpGglR4EkzmK5F996ZKpnySP5DS EgfYHTjKupHJUE3xBAoUedfP2iFRHAxYcHG9vmWcUr6yJKkBlwE2ZY3L59ialV/hah FlQ7yaDFTWCOCsOIWLXocIBG9BZ6j4TXQrWWV6+LeQhyGBSlfN1f7OmP3cuZFQSPLU cbIeia8K5dMKA== Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org X-Spam-Status: No, score=-6.8 required=5.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID,T_RP_MATCHES_RCVD,UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Add a new make target to enable installing test. This target installs test in the kselftest install location and add to the kselftest script to run the test. Install target can be run only from top level kernel source directory. Signed-off-by: Shuah Khan --- tools/testing/selftests/ptrace/Makefile | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/tools/testing/selftests/ptrace/Makefile b/tools/testing/selftests/ptrace/Makefile index 47ae2d3..6fc352c 100644 --- a/tools/testing/selftests/ptrace/Makefile +++ b/tools/testing/selftests/ptrace/Makefile @@ -1,10 +1,20 @@ CFLAGS += -iquote../../../../include/uapi -Wall -peeksiginfo: peeksiginfo.c -all: peeksiginfo +TEST_STR = ./peeksiginfo || echo 'peeksiginfo selftests: [FAIL]' + +all: + gcc peeksiginfo.c -o peeksiginfo + +install: +ifdef INSTALL_KSFT_PATH + install ./peeksiginfo $(INSTALL_KSFT_PATH) + @echo "$(TEST_STR)" >> $(KSELFTEST) +else + @echo "Run make kselftest_install in top level source directory" +endif clean: rm -f peeksiginfo run_tests: all - @./peeksiginfo || echo "peeksiginfo selftests: [FAIL]" + @$(TEST_STR)