mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-22 12:14:01 +08:00
perf tests: Fix installation tests path setup
Currently installation tests work only over x86_64, adding arch check to make it work over i386 as well. NOTE looks like x86 is the only arch running tests, we need some IS_(32/64) flag to make this generic. Signed-off-by: Jiri Olsa <jolsa@redhat.com> Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com> Cc: David Ahern <dsahern@gmail.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Ingo Molnar <mingo@elte.hu> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Link: http://lkml.kernel.org/r/1388759553-12974-2-git-send-email-jolsa@redhat.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
parent
a6cf5f3923
commit
f7c6447424
@ -1,6 +1,16 @@
|
||||
PERF := .
|
||||
MK := Makefile
|
||||
|
||||
include config/Makefile.arch
|
||||
|
||||
# FIXME looks like x86 is the only arch running tests ;-)
|
||||
# we need some IS_(32/64) flag to make this generic
|
||||
ifeq ($(IS_X86_64),1)
|
||||
lib = lib64
|
||||
else
|
||||
lib = lib
|
||||
endif
|
||||
|
||||
has = $(shell which $1 2>/dev/null)
|
||||
|
||||
# standard single make variable specified
|
||||
@ -118,16 +128,16 @@ installed_files_bin := bin/perf
|
||||
installed_files_bin += etc/bash_completion.d/perf
|
||||
installed_files_bin += libexec/perf-core/perf-archive
|
||||
|
||||
installed_files_plugins := lib64/traceevent/plugins/plugin_cfg80211.so
|
||||
installed_files_plugins += lib64/traceevent/plugins/plugin_scsi.so
|
||||
installed_files_plugins += lib64/traceevent/plugins/plugin_xen.so
|
||||
installed_files_plugins += lib64/traceevent/plugins/plugin_function.so
|
||||
installed_files_plugins += lib64/traceevent/plugins/plugin_sched_switch.so
|
||||
installed_files_plugins += lib64/traceevent/plugins/plugin_mac80211.so
|
||||
installed_files_plugins += lib64/traceevent/plugins/plugin_kvm.so
|
||||
installed_files_plugins += lib64/traceevent/plugins/plugin_kmem.so
|
||||
installed_files_plugins += lib64/traceevent/plugins/plugin_hrtimer.so
|
||||
installed_files_plugins += lib64/traceevent/plugins/plugin_jbd2.so
|
||||
installed_files_plugins := $(lib)/traceevent/plugins/plugin_cfg80211.so
|
||||
installed_files_plugins += $(lib)/traceevent/plugins/plugin_scsi.so
|
||||
installed_files_plugins += $(lib)/traceevent/plugins/plugin_xen.so
|
||||
installed_files_plugins += $(lib)/traceevent/plugins/plugin_function.so
|
||||
installed_files_plugins += $(lib)/traceevent/plugins/plugin_sched_switch.so
|
||||
installed_files_plugins += $(lib)/traceevent/plugins/plugin_mac80211.so
|
||||
installed_files_plugins += $(lib)/traceevent/plugins/plugin_kvm.so
|
||||
installed_files_plugins += $(lib)/traceevent/plugins/plugin_kmem.so
|
||||
installed_files_plugins += $(lib)/traceevent/plugins/plugin_hrtimer.so
|
||||
installed_files_plugins += $(lib)/traceevent/plugins/plugin_jbd2.so
|
||||
|
||||
installed_files_all := $(installed_files_bin)
|
||||
installed_files_all += $(installed_files_plugins)
|
||||
|
Loading…
Reference in New Issue
Block a user