From patchwork Wed Dec 24 16:27:38 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Shuah Khan X-Patchwork-Id: 5539941 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 219E19F1CD for ; Wed, 24 Dec 2014 16:36:55 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 47E7C201DD for ; Wed, 24 Dec 2014 16:36:54 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 68E55201D3 for ; Wed, 24 Dec 2014 16:36:53 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751887AbaLXQgw (ORCPT ); Wed, 24 Dec 2014 11:36:52 -0500 Received: from resqmta-po-02v.sys.comcast.net ([96.114.154.161]:50090 "EHLO resqmta-po-02v.sys.comcast.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752106AbaLXQgT (ORCPT ); Wed, 24 Dec 2014 11:36:19 -0500 Received: from resomta-po-06v.sys.comcast.net ([96.114.154.230]) by resqmta-po-02v.sys.comcast.net with comcast id XUU11p0074yXVJQ01UU2rV; Wed, 24 Dec 2014 16:28:02 +0000 Received: from mail.gonehiking.org ([50.134.149.16]) by resomta-po-06v.sys.comcast.net with comcast id XUU11p00k0MU7Qa01UU21f; Wed, 24 Dec 2014 16:28:02 +0000 Received: from lorien.internal (lorien-wl.internal [192.168.1.40]) by mail.gonehiking.org (Postfix) with ESMTP id 90B123FED4; Wed, 24 Dec 2014 09:28:01 -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 02/20] selftests/cpu-hotplug: add install target to enable test install Date: Wed, 24 Dec 2014 09:27:38 -0700 Message-Id: <7c68362e79fa107dea168d94255228280114689e.1419387513.git.shuahkh@osg.samsung.com> 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=1419438482; bh=CkHoX553VOvzmpgCA3KYJdAKbpAkmdMW/zJ5iitASHQ=; h=Received:Received:Received:From:To:Subject:Date:Message-Id; b=EmNBdqKD878qXEANkuxIq6zxIT1s2ozIv9DtzcCkEul3nB19i3fjahW1AvjTHXHKP sjwQt6TIwytwKZMKm/tN1BFdJp6ms7Hz6Hqy818QvyLGszNcZt87JuaRNpyIr7uD7M usdd4IVkd/ejyssEogA5u9qU8xlAc0RlS4u1BdaeXHrvMtVbWSLywhcD3uEPU9EWgV uahIkJjLFxwugaGvqQQESJZMpWPZv/E8Ap8lJoRM54IlZLX3Go4GuJOmDxNMFYAmbv n9lvM/OuQ6pALxB88/nB1K9SlKaSf/FzY9cS5SleOArY93JN4irqnAQ9p2F8umK8kS yQghR5yIvkXwQ== 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/cpu-hotplug/Makefile | 14 ++++++++++++-- .../cpu-hotplug/{on-off-test.sh => cpu-on-off-test.sh} | 0 2 files changed, 12 insertions(+), 2 deletions(-) rename tools/testing/selftests/cpu-hotplug/{on-off-test.sh => cpu-on-off-test.sh} (100%) diff --git a/tools/testing/selftests/cpu-hotplug/on-off-test.sh b/tools/testing/selftests/cpu-hotplug/cpu-on-off-test.sh similarity index 100% rename from tools/testing/selftests/cpu-hotplug/on-off-test.sh rename to tools/testing/selftests/cpu-hotplug/cpu-on-off-test.sh diff --git a/tools/testing/selftests/cpu-hotplug/Makefile b/tools/testing/selftests/cpu-hotplug/Makefile index e9c28d8..c9e15ee 100644 --- a/tools/testing/selftests/cpu-hotplug/Makefile +++ b/tools/testing/selftests/cpu-hotplug/Makefile @@ -1,9 +1,19 @@ +TEST_STR=/bin/bash ./cpu-on-off-test.sh || echo cpu-hotplug selftests: [FAIL] + all: +install: +ifdef INSTALL_KSFT_PATH + install ./cpu-on-off-test.sh $(INSTALL_KSFT_PATH)/cpu-on-off-test.sh + @echo "$(TEST_STR)" >> $(KSELFTEST) +else + @echo Run make kselftest_install in top level source directory +endif + run_tests: - @/bin/bash ./on-off-test.sh || echo "cpu-hotplug selftests: [FAIL]" + @$(TEST_STR) run_full_test: - @/bin/bash ./on-off-test.sh -a || echo "cpu-hotplug selftests: [FAIL]" + @/bin/bash ./cpu-on-off-test.sh -a || echo "cpu-hotplug selftests: [FAIL]" clean: