Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752594AbdHNRta (ORCPT ); Mon, 14 Aug 2017 13:49:30 -0400 Received: from terminus.zytor.com ([65.50.211.136]:60263 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751494AbdHNRt2 (ORCPT ); Mon, 14 Aug 2017 13:49:28 -0400 Date: Mon, 14 Aug 2017 10:46:53 -0700 From: tip-bot for Arnaldo Carvalho de Melo Message-ID: Cc: mingo@kernel.org, adrian.hunter@intel.com, hpa@zytor.com, jolsa@kernel.org, tglx@linutronix.de, tmricht@linux.vnet.ibm.com, dsahern@gmail.com, namhyung@kernel.org, linux-kernel@vger.kernel.org, mpetlan@redhat.com, acme@redhat.com, wangnan0@huawei.com Reply-To: tmricht@linux.vnet.ibm.com, namhyung@kernel.org, dsahern@gmail.com, jolsa@kernel.org, tglx@linutronix.de, hpa@zytor.com, mingo@kernel.org, adrian.hunter@intel.com, wangnan0@huawei.com, acme@redhat.com, linux-kernel@vger.kernel.org, mpetlan@redhat.com To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/core] perf test shell: Install shell tests Git-Commit-ID: 122e0b947052f6106595fa29d63d514d2ebcdad9 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1841 Lines: 42 Commit-ID: 122e0b947052f6106595fa29d63d514d2ebcdad9 Gitweb: http://git.kernel.org/tip/122e0b947052f6106595fa29d63d514d2ebcdad9 Author: Arnaldo Carvalho de Melo AuthorDate: Fri, 4 Aug 2017 12:19:44 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Fri, 11 Aug 2017 16:06:28 -0300 perf test shell: Install shell tests Now that we have shell tests, install them. Developers don't need this pass, as 'perf test' will look first at the in tree scripts at tools/perf/tests/shell/. Cc: Adrian Hunter Cc: David Ahern Cc: Jiri Olsa Cc: Michael Petlan Cc: Namhyung Kim Cc: Thomas Richter Cc: Wang Nan Link: http://lkml.kernel.org/n/tip-j21u4v0jsehi0lpwqwjb4j45@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo --- tools/perf/Makefile.perf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/perf/Makefile.perf b/tools/perf/Makefile.perf index c1f7884..eb13567 100644 --- a/tools/perf/Makefile.perf +++ b/tools/perf/Makefile.perf @@ -760,7 +760,9 @@ install-tests: all install-gtk $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/tests'; \ $(INSTALL) tests/attr.py '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/tests'; \ $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/tests/attr'; \ - $(INSTALL) tests/attr/* '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/tests/attr' + $(INSTALL) tests/attr/* '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/tests/attr'; \ + $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/tests/shell'; \ + $(INSTALL) tests/shell/*.sh '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/tests/shell' install-bin: install-tools install-tests install-traceevent-plugins