blob: df38decc48c32df72e9dfa86ef3f7e7b035322e7 [file] [log] [blame]
Wang Nan935e6bd2016-01-11 13:47:58 +00001include ../scripts/Makefile.include
2
Jiri Olsa502819c2015-06-22 14:50:50 +02003ifndef MK
4ifeq ($(MAKECMDGOALS),)
5# no target specified, trigger the whole suite
6all:
7 @echo "Testing Makefile"; $(MAKE) -sf tests/make MK=Makefile
8 @echo "Testing Makefile.perf"; $(MAKE) -sf tests/make MK=Makefile.perf
9else
10# run only specific test over 'Makefile'
11%:
12 @echo "Testing Makefile"; $(MAKE) -sf tests/make MK=Makefile $@
13endif
14else
Jiri Olsa095ae692013-03-29 16:11:02 +010015PERF := .
Jiri Olsa095ae692013-03-29 16:11:02 +010016
Wang Nan935e6bd2016-01-11 13:47:58 +000017# As per kernel Makefile, avoid funny character set dependencies
18unexport LC_ALL
19LC_COLLATE=C
20LC_NUMERIC=C
21export LC_COLLATE LC_NUMERIC
22
23ifeq ($(srctree),)
24srctree := $(patsubst %/,%,$(dir $(shell pwd)))
25srctree := $(patsubst %/,%,$(dir $(srctree)))
26#$(info Determined 'srctree' to be $(srctree))
27endif
28
29include $(srctree)/tools/scripts/Makefile.arch
Jiri Olsaf7c64472014-01-03 15:32:33 +010030
31# FIXME looks like x86 is the only arch running tests ;-)
32# we need some IS_(32/64) flag to make this generic
H.J. Lu76aea772015-03-17 15:27:48 -070033ifeq ($(ARCH)$(IS_64_BIT), x861)
Jiri Olsaf7c64472014-01-03 15:32:33 +010034lib = lib64
35else
36lib = lib
37endif
38
Jiri Olsa0659e662013-07-22 14:43:30 +020039has = $(shell which $1 2>/dev/null)
40
Jiri Olsa095ae692013-03-29 16:11:02 +010041# standard single make variable specified
42make_clean_all := clean all
43make_python_perf_so := python/perf.so
44make_debug := DEBUG=1
45make_no_libperl := NO_LIBPERL=1
46make_no_libpython := NO_LIBPYTHON=1
47make_no_scripts := NO_LIBPYTHON=1 NO_LIBPERL=1
48make_no_newt := NO_NEWT=1
49make_no_slang := NO_SLANG=1
50make_no_gtk2 := NO_GTK2=1
51make_no_ui := NO_NEWT=1 NO_SLANG=1 NO_GTK2=1
52make_no_demangle := NO_DEMANGLE=1
53make_no_libelf := NO_LIBELF=1
54make_no_libunwind := NO_LIBUNWIND=1
Jiri Olsa9e8c06e2014-02-19 16:52:59 +010055make_no_libdw_dwarf_unwind := NO_LIBDW_DWARF_UNWIND=1
Jiri Olsa095ae692013-03-29 16:11:02 +010056make_no_backtrace := NO_BACKTRACE=1
57make_no_libnuma := NO_LIBNUMA=1
58make_no_libaudit := NO_LIBAUDIT=1
59make_no_libbionic := NO_LIBBIONIC=1
Adrian Huntere31f0d02015-04-30 17:37:27 +030060make_no_auxtrace := NO_AUXTRACE=1
Wang Naned63f34c2015-10-14 12:41:12 +000061make_no_libbpf := NO_LIBBPF=1
Jiri Olsa095ae692013-03-29 16:11:02 +010062make_tags := tags
63make_cscope := cscope
64make_help := help
65make_doc := doc
Jiri Olsa2a94f6c2014-02-19 11:21:39 +010066make_perf_o := perf.o
67make_util_map_o := util/map.o
68make_util_pmu_bison_o := util/pmu-bison.o
Jiri Olsac0ec1102013-07-22 14:43:33 +020069make_install := install
70make_install_bin := install-bin
Jiri Olsadbad4182013-07-22 14:43:34 +020071make_install_doc := install-doc
72make_install_man := install-man
73make_install_html := install-html
74make_install_info := install-info
75make_install_pdf := install-pdf
Jiri Olsaaa53c092015-07-27 20:24:17 +020076make_install_prefix := install prefix=/tmp/krava
77make_install_prefix_slash := install prefix=/tmp/krava/
Jiri Olsa611ec122014-04-29 09:53:40 +020078make_static := LDFLAGS=-static
Jiri Olsa095ae692013-03-29 16:11:02 +010079
80# all the NO_* variable combined
81make_minimal := NO_LIBPERL=1 NO_LIBPYTHON=1 NO_NEWT=1 NO_GTK2=1
82make_minimal += NO_DEMANGLE=1 NO_LIBELF=1 NO_LIBUNWIND=1 NO_BACKTRACE=1
83make_minimal += NO_LIBNUMA=1 NO_LIBAUDIT=1 NO_LIBBIONIC=1
Wang Naned63f34c2015-10-14 12:41:12 +000084make_minimal += NO_LIBDW_DWARF_UNWIND=1 NO_AUXTRACE=1 NO_LIBBPF=1
Jiri Olsa095ae692013-03-29 16:11:02 +010085
86# $(run) contains all available tests
87run := make_pure
Jiri Olsa502819c2015-06-22 14:50:50 +020088# Targets 'clean all' can be run together only through top level
89# Makefile because we detect clean target in Makefile.perf and
90# disable features detection
91ifeq ($(MK),Makefile)
Jiri Olsa095ae692013-03-29 16:11:02 +010092run += make_clean_all
Jiri Olsa502819c2015-06-22 14:50:50 +020093endif
Jiri Olsa095ae692013-03-29 16:11:02 +010094run += make_python_perf_so
95run += make_debug
96run += make_no_libperl
97run += make_no_libpython
98run += make_no_scripts
99run += make_no_newt
100run += make_no_slang
101run += make_no_gtk2
102run += make_no_ui
103run += make_no_demangle
104run += make_no_libelf
105run += make_no_libunwind
Jiri Olsa9e8c06e2014-02-19 16:52:59 +0100106run += make_no_libdw_dwarf_unwind
Jiri Olsa095ae692013-03-29 16:11:02 +0100107run += make_no_backtrace
108run += make_no_libnuma
109run += make_no_libaudit
110run += make_no_libbionic
Adrian Huntere31f0d02015-04-30 17:37:27 +0300111run += make_no_auxtrace
Wang Naned63f34c2015-10-14 12:41:12 +0000112run += make_no_libbpf
Jiri Olsa095ae692013-03-29 16:11:02 +0100113run += make_help
114run += make_doc
115run += make_perf_o
116run += make_util_map_o
Jiri Olsa2a94f6c2014-02-19 11:21:39 +0100117run += make_util_pmu_bison_o
Jiri Olsac0ec1102013-07-22 14:43:33 +0200118run += make_install
119run += make_install_bin
Jiri Olsaeb30d2c2015-06-22 14:50:51 +0200120run += make_install_prefix
Jiri Olsaaa53c092015-07-27 20:24:17 +0200121run += make_install_prefix_slash
Jiri Olsadbad4182013-07-22 14:43:34 +0200122# FIXME 'install-*' commented out till they're fixed
123# run += make_install_doc
124# run += make_install_man
125# run += make_install_html
126# run += make_install_info
127# run += make_install_pdf
Jiri Olsa095ae692013-03-29 16:11:02 +0100128run += make_minimal
Jiri Olsa611ec122014-04-29 09:53:40 +0200129run += make_static
Jiri Olsa095ae692013-03-29 16:11:02 +0100130
Jiri Olsa0659e662013-07-22 14:43:30 +0200131ifneq ($(call has,ctags),)
132run += make_tags
133endif
134ifneq ($(call has,cscope),)
135run += make_cscope
136endif
137
Jiri Olsa095ae692013-03-29 16:11:02 +0100138# $(run_O) contains same portion of $(run) tests with '_O' attached
139# to distinguish O=... tests
140run_O := $(addsuffix _O,$(run))
141
142# disable some tests for O=...
143run_O := $(filter-out make_python_perf_so_O,$(run_O))
144
145# define test for each compile as 'test_NAME' variable
146# with the test itself as a value
147test_make_tags = test -f tags
148test_make_cscope = test -f cscope.out
149
150test_make_tags_O := $(test_make_tags)
151test_make_cscope_O := $(test_make_cscope)
152
153test_ok := true
154test_make_help := $(test_ok)
155test_make_doc := $(test_ok)
156test_make_help_O := $(test_ok)
157test_make_doc_O := $(test_ok)
158
159test_make_python_perf_so := test -f $(PERF)/python/perf.so
160
Jiri Olsa2a94f6c2014-02-19 11:21:39 +0100161test_make_perf_o := test -f $(PERF)/perf.o
162test_make_util_map_o := test -f $(PERF)/util/map.o
163test_make_util_pmu_bison_o := test -f $(PERF)/util/pmu-bison.o
Jiri Olsa095ae692013-03-29 16:11:02 +0100164
Jiri Olsaee4ad932013-12-19 14:41:59 +0100165define test_dest_files
166 for file in $(1); do \
167 if [ ! -x $$TMP_DEST/$$file ]; then \
168 echo " failed to find: $$file"; \
169 fi \
170 done
171endef
172
173installed_files_bin := bin/perf
174installed_files_bin += etc/bash_completion.d/perf
175installed_files_bin += libexec/perf-core/perf-archive
176
Jiri Olsaf7c64472014-01-03 15:32:33 +0100177installed_files_plugins := $(lib)/traceevent/plugins/plugin_cfg80211.so
178installed_files_plugins += $(lib)/traceevent/plugins/plugin_scsi.so
179installed_files_plugins += $(lib)/traceevent/plugins/plugin_xen.so
180installed_files_plugins += $(lib)/traceevent/plugins/plugin_function.so
181installed_files_plugins += $(lib)/traceevent/plugins/plugin_sched_switch.so
182installed_files_plugins += $(lib)/traceevent/plugins/plugin_mac80211.so
183installed_files_plugins += $(lib)/traceevent/plugins/plugin_kvm.so
184installed_files_plugins += $(lib)/traceevent/plugins/plugin_kmem.so
185installed_files_plugins += $(lib)/traceevent/plugins/plugin_hrtimer.so
186installed_files_plugins += $(lib)/traceevent/plugins/plugin_jbd2.so
Jiri Olsaee4ad932013-12-19 14:41:59 +0100187
188installed_files_all := $(installed_files_bin)
189installed_files_all += $(installed_files_plugins)
190
191test_make_install := $(call test_dest_files,$(installed_files_all))
192test_make_install_O := $(call test_dest_files,$(installed_files_all))
193test_make_install_bin := $(call test_dest_files,$(installed_files_bin))
194test_make_install_bin_O := $(call test_dest_files,$(installed_files_bin))
Jiri Olsac0ec1102013-07-22 14:43:33 +0200195
Jiri Olsaaa53c092015-07-27 20:24:17 +0200196# We prefix all installed files for make_install_prefix(_slash)
Jiri Olsaeb30d2c2015-06-22 14:50:51 +0200197# with '/tmp/krava' to match installed/prefix-ed files.
198installed_files_all_prefix := $(addprefix /tmp/krava/,$(installed_files_all))
Jiri Olsaaa53c092015-07-27 20:24:17 +0200199test_make_install_prefix := $(call test_dest_files,$(installed_files_all_prefix))
200test_make_install_prefix_O := $(call test_dest_files,$(installed_files_all_prefix))
201
202test_make_install_prefix_slash := $(test_make_install_prefix)
203test_make_install_prefix_slash_O := $(test_make_install_prefix_O)
Jiri Olsaeb30d2c2015-06-22 14:50:51 +0200204
Jiri Olsadbad4182013-07-22 14:43:34 +0200205# FIXME nothing gets installed
206test_make_install_man := test -f $$TMP_DEST/share/man/man1/perf.1
207test_make_install_man_O := $(test_make_install_man)
208
209# FIXME nothing gets installed
210test_make_install_doc := $(test_ok)
211test_make_install_doc_O := $(test_ok)
212
213# FIXME nothing gets installed
214test_make_install_html := $(test_ok)
215test_make_install_html_O := $(test_ok)
216
217# FIXME nothing gets installed
218test_make_install_info := $(test_ok)
219test_make_install_info_O := $(test_ok)
220
221# FIXME nothing gets installed
222test_make_install_pdf := $(test_ok)
223test_make_install_pdf_O := $(test_ok)
224
Jiri Olsa04b01a12014-02-19 11:21:38 +0100225test_make_python_perf_so_O := test -f $$TMP_O/python/perf.so
226test_make_perf_o_O := test -f $$TMP_O/perf.o
227test_make_util_map_o_O := test -f $$TMP_O/util/map.o
Jiri Olsa2a94f6c2014-02-19 11:21:39 +0100228test_make_util_pmu_bison_o_O := test -f $$TMP_O/util/pmu-bison.o
Jiri Olsa095ae692013-03-29 16:11:02 +0100229
230test_default = test -x $(PERF)/perf
231test = $(if $(test_$1),$(test_$1),$(test_default))
232
Jiri Olsa8ba7cde2013-07-22 14:43:31 +0200233test_default_O = test -x $$TMP_O/perf
Jiri Olsa095ae692013-03-29 16:11:02 +0100234test_O = $(if $(test_$1),$(test_$1),$(test_default_O))
235
236all:
237
Arnaldo Carvalho de Melo98916392015-11-04 16:25:32 -0300238ifdef SHUF
239run := $(shell shuf -e $(run))
240run_O := $(shell shuf -e $(run_O))
241endif
242
Jiri Olsa095ae692013-03-29 16:11:02 +0100243ifdef DEBUG
244d := $(info run $(run))
245d := $(info run_O $(run_O))
246endif
247
248MAKEFLAGS := --no-print-directory
249
250clean := @(cd $(PERF); make -s -f $(MK) clean >/dev/null)
251
252$(run):
253 $(call clean)
Jiri Olsac9311672013-07-22 14:43:32 +0200254 @TMP_DEST=$$(mktemp -d); \
255 cmd="cd $(PERF) && make -f $(MK) DESTDIR=$$TMP_DEST $($@)"; \
Jiri Olsa095ae692013-03-29 16:11:02 +0100256 echo "- $@: $$cmd" && echo $$cmd > $@ && \
257 ( eval $$cmd ) >> $@ 2>&1; \
Jiri Olsaee4ad932013-12-19 14:41:59 +0100258 echo " test: $(call test,$@)" >> $@ 2>&1; \
Jiri Olsa095ae692013-03-29 16:11:02 +0100259 $(call test,$@) && \
Arnaldo Carvalho de Meloa5c50092014-06-05 17:15:47 -0300260 rm -rf $@ $$TMP_DEST || (cat $@ ; false)
Jiri Olsa095ae692013-03-29 16:11:02 +0100261
262$(run_O):
263 $(call clean)
Jiri Olsa8ba7cde2013-07-22 14:43:31 +0200264 @TMP_O=$$(mktemp -d); \
Jiri Olsac9311672013-07-22 14:43:32 +0200265 TMP_DEST=$$(mktemp -d); \
266 cmd="cd $(PERF) && make -f $(MK) O=$$TMP_O DESTDIR=$$TMP_DEST $($(patsubst %_O,%,$@))"; \
Jiri Olsa095ae692013-03-29 16:11:02 +0100267 echo "- $@: $$cmd" && echo $$cmd > $@ && \
268 ( eval $$cmd ) >> $@ 2>&1 && \
Jiri Olsaee4ad932013-12-19 14:41:59 +0100269 echo " test: $(call test_O,$@)" >> $@ 2>&1; \
Jiri Olsa095ae692013-03-29 16:11:02 +0100270 $(call test_O,$@) && \
Arnaldo Carvalho de Meloa5c50092014-06-05 17:15:47 -0300271 rm -rf $@ $$TMP_O $$TMP_DEST || (cat $@ ; false)
Jiri Olsa095ae692013-03-29 16:11:02 +0100272
Arnaldo Carvalho de Melo48878052014-01-10 16:46:45 -0300273tarpkg:
274 @cmd="$(PERF)/tests/perf-targz-src-pkg $(PERF)"; \
275 echo "- $@: $$cmd" && echo $$cmd > $@ && \
Josh Poimboeuf004bd892015-12-13 22:18:04 -0600276 ( eval $$cmd ) >> $@ 2>&1 && \
277 rm -f $@
Arnaldo Carvalho de Melo48878052014-01-10 16:46:45 -0300278
Jiri Olsac41c6642015-04-18 22:34:40 +0200279make_kernelsrc:
Jiri Olsa502819c2015-06-22 14:50:50 +0200280 @echo "- make -C <kernelsrc> tools/perf"
Jiri Olsac41c6642015-04-18 22:34:40 +0200281 $(call clean); \
282 (make -C ../.. tools/perf) > $@ 2>&1 && \
283 test -x perf && rm -f $@ || (cat $@ ; false)
284
285make_kernelsrc_tools:
Jiri Olsa502819c2015-06-22 14:50:50 +0200286 @echo "- make -C <kernelsrc>/tools perf"
Jiri Olsac41c6642015-04-18 22:34:40 +0200287 $(call clean); \
288 (make -C ../../tools perf) > $@ 2>&1 && \
289 test -x perf && rm -f $@ || (cat $@ ; false)
290
291all: $(run) $(run_O) tarpkg make_kernelsrc make_kernelsrc_tools
Jiri Olsa095ae692013-03-29 16:11:02 +0100292 @echo OK
293
294out: $(run_O)
295 @echo OK
296
Wang Nan3167eea2016-01-11 13:47:53 +0000297.PHONY: all $(run) $(run_O) tarpkg clean make_kernelsrc make_kernelsrc_tools
Jiri Olsa502819c2015-06-22 14:50:50 +0200298endif # ifndef MK