From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932156AbcELKZU (ORCPT ); Thu, 12 May 2016 06:25:20 -0400 Received: from terminus.zytor.com ([198.137.202.10]:37828 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752484AbcELKZO (ORCPT ); Thu, 12 May 2016 06:25:14 -0400 Date: Thu, 12 May 2016 03:24:03 -0700 From: tip-bot for He Kuang Message-ID: Cc: namhyung@kernel.org, acme@redhat.com, jolsa@kernel.org, eranian@google.com, penberg@kernel.org, tumanova@linux.vnet.ibm.com, alexander.shishkin@linux.intel.com, hpa@zytor.com, adrian.hunter@intel.com, mingo@kernel.org, kan.liang@intel.com, hekuang@huawei.com, ak@linux.intel.com, masami.hiramatsu.pt@hitachi.com, linux-kernel@vger.kernel.org, peterz@infradead.org, wangnan0@huawei.com, dsahern@gmail.com, jpoimboe@redhat.com, sukadev@linux.vnet.ibm.com, tglx@linutronix.de Reply-To: namhyung@kernel.org, acme@redhat.com, jolsa@kernel.org, penberg@kernel.org, alexander.shishkin@linux.intel.com, eranian@google.com, tumanova@linux.vnet.ibm.com, hpa@zytor.com, adrian.hunter@intel.com, mingo@kernel.org, ak@linux.intel.com, kan.liang@intel.com, hekuang@huawei.com, linux-kernel@vger.kernel.org, masami.hiramatsu.pt@hitachi.com, peterz@infradead.org, wangnan0@huawei.com, dsahern@gmail.com, jpoimboe@redhat.com, sukadev@linux.vnet.ibm.com, tglx@linutronix.de In-Reply-To: <1462866037-30382-5-git-send-email-hekuang@huawei.com> References: <1462866037-30382-5-git-send-email-hekuang@huawei.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/core] perf build: Add build-test for debug-frame on arm/arm64 Git-Commit-ID: f9be7eefcce9de7323c922bea6b45183eb9ef5f0 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 Commit-ID: f9be7eefcce9de7323c922bea6b45183eb9ef5f0 Gitweb: http://git.kernel.org/tip/f9be7eefcce9de7323c922bea6b45183eb9ef5f0 Author: He Kuang AuthorDate: Tue, 10 May 2016 07:40:32 +0000 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 11 May 2016 12:24:58 -0300 perf build: Add build-test for debug-frame on arm/arm64 Debug-frame for remote platforms is not related to the host platform, so we should test each platform separately. Signed-off-by: He Kuang Acked-by: Jiri Olsa Cc: Adrian Hunter Cc: Alexander Shishkin Cc: Andi Kleen Cc: David Ahern Cc: Ekaterina Tumanova Cc: Josh Poimboeuf Cc: Kan Liang Cc: Masami Hiramatsu Cc: Namhyung Kim Cc: Pekka Enberg Cc: Peter Zijlstra Cc: Stephane Eranian Cc: Sukadev Bhattiprolu Cc: Wang Nan Link: http://lkml.kernel.org/r/1462866037-30382-5-git-send-email-hekuang@huawei.com Signed-off-by: Arnaldo Carvalho de Melo --- tools/build/Makefile.feature | 4 +++- tools/build/feature/Makefile | 7 +++++++ ...ibunwind-debug-frame.c => test-libunwind-debug-frame-aarch64.c} | 2 +- ...st-libunwind-debug-frame.c => test-libunwind-debug-frame-arm.c} | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/tools/build/Makefile.feature b/tools/build/Makefile.feature index 7e36e91..57c8f98 100644 --- a/tools/build/Makefile.feature +++ b/tools/build/Makefile.feature @@ -73,7 +73,9 @@ FEATURE_TESTS_EXTRA := \ libbabeltrace \ liberty \ liberty-z \ - libunwind-debug-frame + libunwind-debug-frame \ + libunwind-debug-frame-arm \ + libunwind-debug-frame-aarch64 FEATURE_TESTS ?= $(FEATURE_TESTS_BASIC) diff --git a/tools/build/feature/Makefile b/tools/build/feature/Makefile index f4fe3bc..3d88f09 100644 --- a/tools/build/feature/Makefile +++ b/tools/build/feature/Makefile @@ -31,6 +31,8 @@ FILES= \ test-libunwind-x86_64.bin \ test-libunwind-arm.bin \ test-libunwind-aarch64.bin \ + test-libunwind-debug-frame-arm.bin \ + test-libunwind-debug-frame-aarch64.bin \ test-pthread-attr-setaffinity-np.bin \ test-stackprotector-all.bin \ test-timerfd.bin \ @@ -119,6 +121,11 @@ $(OUTPUT)test-libunwind-arm.bin: $(OUTPUT)test-libunwind-aarch64.bin: $(BUILD) -lelf -lunwind-aarch64 +$(OUTPUT)test-libunwind-debug-frame-arm.bin: + $(BUILD) -lelf -lunwind-arm + +$(OUTPUT)test-libunwind-debug-frame-aarch64.bin: + $(BUILD) -lelf -lunwind-aarch64 $(OUTPUT)test-libaudit.bin: $(BUILD) -laudit diff --git a/tools/build/feature/test-libunwind-debug-frame.c b/tools/build/feature/test-libunwind-debug-frame-aarch64.c similarity index 91% copy from tools/build/feature/test-libunwind-debug-frame.c copy to tools/build/feature/test-libunwind-debug-frame-aarch64.c index 0ef8087..2284467 100644 --- a/tools/build/feature/test-libunwind-debug-frame.c +++ b/tools/build/feature/test-libunwind-debug-frame-aarch64.c @@ -1,4 +1,4 @@ -#include +#include #include extern int diff --git a/tools/build/feature/test-libunwind-debug-frame.c b/tools/build/feature/test-libunwind-debug-frame-arm.c similarity index 92% copy from tools/build/feature/test-libunwind-debug-frame.c copy to tools/build/feature/test-libunwind-debug-frame-arm.c index 0ef8087..f988596 100644 --- a/tools/build/feature/test-libunwind-debug-frame.c +++ b/tools/build/feature/test-libunwind-debug-frame-arm.c @@ -1,4 +1,4 @@ -#include +#include #include extern int