From patchwork Wed Dec 24 16:27:52 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Shuah Khan X-Patchwork-Id: 5539791 Return-Path: X-Original-To: patchwork-linux-kbuild@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 5ACA39F1CD for ; Wed, 24 Dec 2014 16:33:59 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 90E69201C7 for ; Wed, 24 Dec 2014 16:33:58 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id BD0602012D for ; Wed, 24 Dec 2014 16:33:57 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752623AbaLXQdx (ORCPT ); Wed, 24 Dec 2014 11:33:53 -0500 Received: from resqmta-po-01v.sys.comcast.net ([96.114.154.160]:58066 "EHLO resqmta-po-01v.sys.comcast.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752559AbaLXQdU (ORCPT ); Wed, 24 Dec 2014 11:33:20 -0500 Received: from resomta-po-13v.sys.comcast.net ([96.114.154.237]) by resqmta-po-01v.sys.comcast.net with comcast id XUTa1p00257bBgG01UUDM0; Wed, 24 Dec 2014 16:28:13 +0000 Received: from mail.gonehiking.org ([50.134.149.16]) by resomta-po-13v.sys.comcast.net with comcast id XUUC1p00L0MU7Qa01UUCMF; Wed, 24 Dec 2014 16:28:13 +0000 Received: from lorien.internal (lorien-wl.internal [192.168.1.40]) by mail.gonehiking.org (Postfix) with ESMTP id 218CF40A27; Wed, 24 Dec 2014 09:28:12 -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 Cc: Shuah Khan , linux-kbuild@vger.kernel.org, linux-kernel@vger.kernel.org, linux-api@vger.kernel.org, netdev@vger.kernel.org Subject: [PATCH v3 16/20] selftests/timers: add install target to enable test install Date: Wed, 24 Dec 2014 09:27:52 -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=1419438493; bh=yQNJFFpYOtLEvVcWGkJC4GQPINtaIxyDu062Qka9Cjw=; h=Received:Received:Received:From:To:Subject:Date:Message-Id; b=gab9tEGaA/np4hDmz4PfLRLDk82h80+hedUIro9a5oiJqqcxSFU5LfR5TEgHU22I+ vc35VOIBG4HxvP3xu371I+PRs4doqF1uQjfAhtgSOiVVW66rxhVLBGeODlwxUrHrd3 icWb1VP6lc5/oWSs6CaiGrakLlHSV6oJ53KCsln7qx2hn9irAAOMGatdahKvQC/Lwu UtR6P0Z3RpnQ/ULoHD7J1lWy9UuDlZTSBmXBM9YmfRoA7SXeMf6nRB+TbedtCioYFt eB66+0NnDLBOSWuGVFOWZ1US0l0RjyaASjAmlKgPjN9OpSVW+/K4TwpCXESrM3r3qw fZarCbM0eai2g== 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/timers/Makefile | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/tools/testing/selftests/timers/Makefile b/tools/testing/selftests/timers/Makefile index eb2859f..922bad5 100644 --- a/tools/testing/selftests/timers/Makefile +++ b/tools/testing/selftests/timers/Makefile @@ -1,8 +1,18 @@ +TEST_STR = ./posix_timers + all: gcc posix_timers.c -o posix_timers -lrt +install: +ifdef INSTALL_KSFT_PATH + install ./posix_timers $(INSTALL_KSFT_PATH) + @echo "$(TEST_STR)" >> $(KSELFTEST) +else + @echo Run make kselftest_install in top level source directory +endif + run_tests: all - ./posix_timers + @$(TEST_STR) clean: rm -f ./posix_timers