blob: fc2a9a31113fffc91848542d6e45903016fd0c17 [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
Wang Naneb807732016-01-15 04:00:14 +00008 @echo "Testing Makefile.perf"; $(MAKE) -sf tests/make MK=Makefile.perf SET_PARALLEL=1 SET_O=1
Jiri Olsa502819c2015-06-22 14:50:50 +02009else
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 := .
Wang Naneb807732016-01-15 04:00:14 +000016O_OPT :=
17
18ifneq ($(O),)
19 FULL_O := $(shell readlink -f $(O) || echo $(O))
20 ifeq ($(SET_O),1)
21 O_OPT := 'O=$(FULL_O)'
22 endif
23endif
Jiri Olsa095ae692013-03-29 16:11:02 +010024
Wang Nan7be43df2016-01-13 12:17:14 +000025PARALLEL_OPT=
26ifeq ($(SET_PARALLEL),1)
27 cores := $(shell (getconf _NPROCESSORS_ONLN || egrep -c '^processor|^CPU[0-9]' /proc/cpuinfo) 2>/dev/null)
28 ifeq ($(cores),0)
29 cores := 1
30 endif
31 PARALLEL_OPT="-j$(cores)"
32endif
33
Wang Nan935e6bd2016-01-11 13:47:58 +000034# As per kernel Makefile, avoid funny character set dependencies
35unexport LC_ALL
36LC_COLLATE=C
37LC_NUMERIC=C
38export LC_COLLATE LC_NUMERIC
39
40ifeq ($(srctree),)
41srctree := $(patsubst %/,%,$(dir $(shell pwd)))
42srctree := $(patsubst %/,%,$(dir $(srctree)))
43#$(info Determined 'srctree' to be $(srctree))
44endif
45
46include $(srctree)/tools/scripts/Makefile.arch
Jiri Olsaf7c64472014-01-03 15:32:33 +010047
48# FIXME looks like x86 is the only arch running tests ;-)
49# we need some IS_(32/64) flag to make this generic
H.J. Lu76aea772015-03-17 15:27:48 -070050ifeq ($(ARCH)$(IS_64_BIT), x861)
Jiri Olsaf7c64472014-01-03 15:32:33 +010051lib = lib64
52else
53lib = lib
54endif
55
Jiri Olsa0659e662013-07-22 14:43:30 +020056has = $(shell which $1 2>/dev/null)
57
Jiri Olsa095ae692013-03-29 16:11:02 +010058# standard single make variable specified
59make_clean_all := clean all
60make_python_perf_so := python/perf.so
61make_debug := DEBUG=1
62make_no_libperl := NO_LIBPERL=1
63make_no_libpython := NO_LIBPYTHON=1
64make_no_scripts := NO_LIBPYTHON=1 NO_LIBPERL=1
65make_no_newt := NO_NEWT=1
66make_no_slang := NO_SLANG=1
67make_no_gtk2 := NO_GTK2=1
68make_no_ui := NO_NEWT=1 NO_SLANG=1 NO_GTK2=1
69make_no_demangle := NO_DEMANGLE=1
70make_no_libelf := NO_LIBELF=1
71make_no_libunwind := NO_LIBUNWIND=1
Jiri Olsa9e8c06e2014-02-19 16:52:59 +010072make_no_libdw_dwarf_unwind := NO_LIBDW_DWARF_UNWIND=1
Jiri Olsa095ae692013-03-29 16:11:02 +010073make_no_backtrace := NO_BACKTRACE=1
74make_no_libnuma := NO_LIBNUMA=1
75make_no_libaudit := NO_LIBAUDIT=1
76make_no_libbionic := NO_LIBBIONIC=1
Adrian Huntere31f0d02015-04-30 17:37:27 +030077make_no_auxtrace := NO_AUXTRACE=1
Wang Naned63f34c2015-10-14 12:41:12 +000078make_no_libbpf := NO_LIBBPF=1
Jiri Olsa095ae692013-03-29 16:11:02 +010079make_tags := tags
80make_cscope := cscope
81make_help := help
82make_doc := doc
Jiri Olsa2a94f6c2014-02-19 11:21:39 +010083make_perf_o := perf.o
84make_util_map_o := util/map.o
85make_util_pmu_bison_o := util/pmu-bison.o
Jiri Olsac0ec1102013-07-22 14:43:33 +020086make_install := install
87make_install_bin := install-bin
Jiri Olsadbad4182013-07-22 14:43:34 +020088make_install_doc := install-doc
89make_install_man := install-man
90make_install_html := install-html
91make_install_info := install-info
92make_install_pdf := install-pdf
Jiri Olsaaa53c092015-07-27 20:24:17 +020093make_install_prefix := install prefix=/tmp/krava
94make_install_prefix_slash := install prefix=/tmp/krava/
Jiri Olsa611ec122014-04-29 09:53:40 +020095make_static := LDFLAGS=-static
Jiri Olsa095ae692013-03-29 16:11:02 +010096
97# all the NO_* variable combined
98make_minimal := NO_LIBPERL=1 NO_LIBPYTHON=1 NO_NEWT=1 NO_GTK2=1
99make_minimal += NO_DEMANGLE=1 NO_LIBELF=1 NO_LIBUNWIND=1 NO_BACKTRACE=1
100make_minimal += NO_LIBNUMA=1 NO_LIBAUDIT=1 NO_LIBBIONIC=1
Wang Naned63f34c2015-10-14 12:41:12 +0000101make_minimal += NO_LIBDW_DWARF_UNWIND=1 NO_AUXTRACE=1 NO_LIBBPF=1
Jiri Olsa095ae692013-03-29 16:11:02 +0100102
103# $(run) contains all available tests
104run := make_pure
Jiri Olsa502819c2015-06-22 14:50:50 +0200105# Targets 'clean all' can be run together only through top level
106# Makefile because we detect clean target in Makefile.perf and
107# disable features detection
108ifeq ($(MK),Makefile)
Jiri Olsa095ae692013-03-29 16:11:02 +0100109run += make_clean_all
Jiri Olsa502819c2015-06-22 14:50:50 +0200110endif
Jiri Olsa095ae692013-03-29 16:11:02 +0100111run += make_python_perf_so
112run += make_debug
113run += make_no_libperl
114run += make_no_libpython
115run += make_no_scripts
116run += make_no_newt
117run += make_no_slang
118run += make_no_gtk2
119run += make_no_ui
120run += make_no_demangle
121run += make_no_libelf
122run += make_no_libunwind
Jiri Olsa9e8c06e2014-02-19 16:52:59 +0100123run += make_no_libdw_dwarf_unwind
Jiri Olsa095ae692013-03-29 16:11:02 +0100124run += make_no_backtrace
125run += make_no_libnuma
126run += make_no_libaudit
127run += make_no_libbionic
Adrian Huntere31f0d02015-04-30 17:37:27 +0300128run += make_no_auxtrace
Wang Naned63f34c2015-10-14 12:41:12 +0000129run += make_no_libbpf
Jiri Olsa095ae692013-03-29 16:11:02 +0100130run += make_help
131run += make_doc
132run += make_perf_o
133run += make_util_map_o
Jiri Olsa2a94f6c2014-02-19 11:21:39 +0100134run += make_util_pmu_bison_o
Jiri Olsac0ec1102013-07-22 14:43:33 +0200135run += make_install
136run += make_install_bin
Jiri Olsaeb30d2c2015-06-22 14:50:51 +0200137run += make_install_prefix
Jiri Olsaaa53c092015-07-27 20:24:17 +0200138run += make_install_prefix_slash
Jiri Olsadbad4182013-07-22 14:43:34 +0200139# FIXME 'install-*' commented out till they're fixed
140# run += make_install_doc
141# run += make_install_man
142# run += make_install_html
143# run += make_install_info
144# run += make_install_pdf
Jiri Olsa095ae692013-03-29 16:11:02 +0100145run += make_minimal
Jiri Olsa611ec122014-04-29 09:53:40 +0200146run += make_static
Jiri Olsa095ae692013-03-29 16:11:02 +0100147
Jiri Olsa0659e662013-07-22 14:43:30 +0200148ifneq ($(call has,ctags),)
149run += make_tags
150endif
151ifneq ($(call has,cscope),)
152run += make_cscope
153endif
154
Jiri Olsa095ae692013-03-29 16:11:02 +0100155# $(run_O) contains same portion of $(run) tests with '_O' attached
156# to distinguish O=... tests
157run_O := $(addsuffix _O,$(run))
158
159# disable some tests for O=...
160run_O := $(filter-out make_python_perf_so_O,$(run_O))
161
162# define test for each compile as 'test_NAME' variable
163# with the test itself as a value
164test_make_tags = test -f tags
165test_make_cscope = test -f cscope.out
166
167test_make_tags_O := $(test_make_tags)
168test_make_cscope_O := $(test_make_cscope)
169
170test_ok := true
171test_make_help := $(test_ok)
172test_make_doc := $(test_ok)
173test_make_help_O := $(test_ok)
174test_make_doc_O := $(test_ok)
175
176test_make_python_perf_so := test -f $(PERF)/python/perf.so
177
Jiri Olsa2a94f6c2014-02-19 11:21:39 +0100178test_make_perf_o := test -f $(PERF)/perf.o
179test_make_util_map_o := test -f $(PERF)/util/map.o
180test_make_util_pmu_bison_o := test -f $(PERF)/util/pmu-bison.o
Jiri Olsa095ae692013-03-29 16:11:02 +0100181
Jiri Olsaee4ad932013-12-19 14:41:59 +0100182define test_dest_files
183 for file in $(1); do \
184 if [ ! -x $$TMP_DEST/$$file ]; then \
185 echo " failed to find: $$file"; \
186 fi \
187 done
188endef
189
190installed_files_bin := bin/perf
191installed_files_bin += etc/bash_completion.d/perf
192installed_files_bin += libexec/perf-core/perf-archive
193
Jiri Olsaf7c64472014-01-03 15:32:33 +0100194installed_files_plugins := $(lib)/traceevent/plugins/plugin_cfg80211.so
195installed_files_plugins += $(lib)/traceevent/plugins/plugin_scsi.so
196installed_files_plugins += $(lib)/traceevent/plugins/plugin_xen.so
197installed_files_plugins += $(lib)/traceevent/plugins/plugin_function.so
198installed_files_plugins += $(lib)/traceevent/plugins/plugin_sched_switch.so
199installed_files_plugins += $(lib)/traceevent/plugins/plugin_mac80211.so
200installed_files_plugins += $(lib)/traceevent/plugins/plugin_kvm.so
201installed_files_plugins += $(lib)/traceevent/plugins/plugin_kmem.so
202installed_files_plugins += $(lib)/traceevent/plugins/plugin_hrtimer.so
203installed_files_plugins += $(lib)/traceevent/plugins/plugin_jbd2.so
Jiri Olsaee4ad932013-12-19 14:41:59 +0100204
205installed_files_all := $(installed_files_bin)
206installed_files_all += $(installed_files_plugins)
207
208test_make_install := $(call test_dest_files,$(installed_files_all))
209test_make_install_O := $(call test_dest_files,$(installed_files_all))
210test_make_install_bin := $(call test_dest_files,$(installed_files_bin))
211test_make_install_bin_O := $(call test_dest_files,$(installed_files_bin))
Jiri Olsac0ec1102013-07-22 14:43:33 +0200212
Jiri Olsaaa53c092015-07-27 20:24:17 +0200213# We prefix all installed files for make_install_prefix(_slash)
Jiri Olsaeb30d2c2015-06-22 14:50:51 +0200214# with '/tmp/krava' to match installed/prefix-ed files.
215installed_files_all_prefix := $(addprefix /tmp/krava/,$(installed_files_all))
Jiri Olsaaa53c092015-07-27 20:24:17 +0200216test_make_install_prefix := $(call test_dest_files,$(installed_files_all_prefix))
217test_make_install_prefix_O := $(call test_dest_files,$(installed_files_all_prefix))
218
219test_make_install_prefix_slash := $(test_make_install_prefix)
220test_make_install_prefix_slash_O := $(test_make_install_prefix_O)
Jiri Olsaeb30d2c2015-06-22 14:50:51 +0200221
Jiri Olsadbad4182013-07-22 14:43:34 +0200222# FIXME nothing gets installed
223test_make_install_man := test -f $$TMP_DEST/share/man/man1/perf.1
224test_make_install_man_O := $(test_make_install_man)
225
226# FIXME nothing gets installed
227test_make_install_doc := $(test_ok)
228test_make_install_doc_O := $(test_ok)
229
230# FIXME nothing gets installed
231test_make_install_html := $(test_ok)
232test_make_install_html_O := $(test_ok)
233
234# FIXME nothing gets installed
235test_make_install_info := $(test_ok)
236test_make_install_info_O := $(test_ok)
237
238# FIXME nothing gets installed
239test_make_install_pdf := $(test_ok)
240test_make_install_pdf_O := $(test_ok)
241
Jiri Olsa04b01a12014-02-19 11:21:38 +0100242test_make_python_perf_so_O := test -f $$TMP_O/python/perf.so
243test_make_perf_o_O := test -f $$TMP_O/perf.o
244test_make_util_map_o_O := test -f $$TMP_O/util/map.o
Jiri Olsa2a94f6c2014-02-19 11:21:39 +0100245test_make_util_pmu_bison_o_O := test -f $$TMP_O/util/pmu-bison.o
Jiri Olsa095ae692013-03-29 16:11:02 +0100246
247test_default = test -x $(PERF)/perf
248test = $(if $(test_$1),$(test_$1),$(test_default))
249
Jiri Olsa8ba7cde2013-07-22 14:43:31 +0200250test_default_O = test -x $$TMP_O/perf
Jiri Olsa095ae692013-03-29 16:11:02 +0100251test_O = $(if $(test_$1),$(test_$1),$(test_default_O))
252
253all:
254
Arnaldo Carvalho de Melo98916392015-11-04 16:25:32 -0300255ifdef SHUF
256run := $(shell shuf -e $(run))
257run_O := $(shell shuf -e $(run_O))
258endif
259
Jiri Olsa095ae692013-03-29 16:11:02 +0100260ifdef DEBUG
261d := $(info run $(run))
262d := $(info run_O $(run_O))
263endif
264
265MAKEFLAGS := --no-print-directory
266
Wang Naneb807732016-01-15 04:00:14 +0000267clean := @(cd $(PERF); make -s -f $(MK) $(O_OPT) clean >/dev/null)
Jiri Olsa095ae692013-03-29 16:11:02 +0100268
269$(run):
270 $(call clean)
Jiri Olsac9311672013-07-22 14:43:32 +0200271 @TMP_DEST=$$(mktemp -d); \
Wang Naneb807732016-01-15 04:00:14 +0000272 cmd="cd $(PERF) && make -f $(MK) $(PARALLEL_OPT) $(O_OPT) DESTDIR=$$TMP_DEST $($@)"; \
Jiri Olsa095ae692013-03-29 16:11:02 +0100273 echo "- $@: $$cmd" && echo $$cmd > $@ && \
274 ( eval $$cmd ) >> $@ 2>&1; \
Jiri Olsaee4ad932013-12-19 14:41:59 +0100275 echo " test: $(call test,$@)" >> $@ 2>&1; \
Jiri Olsa095ae692013-03-29 16:11:02 +0100276 $(call test,$@) && \
Arnaldo Carvalho de Meloa5c50092014-06-05 17:15:47 -0300277 rm -rf $@ $$TMP_DEST || (cat $@ ; false)
Jiri Olsa095ae692013-03-29 16:11:02 +0100278
279$(run_O):
280 $(call clean)
Jiri Olsa8ba7cde2013-07-22 14:43:31 +0200281 @TMP_O=$$(mktemp -d); \
Jiri Olsac9311672013-07-22 14:43:32 +0200282 TMP_DEST=$$(mktemp -d); \
Wang Nan7be43df2016-01-13 12:17:14 +0000283 cmd="cd $(PERF) && make -f $(MK) $(PARALLEL_OPT) O=$$TMP_O DESTDIR=$$TMP_DEST $($(patsubst %_O,%,$@))"; \
Jiri Olsa095ae692013-03-29 16:11:02 +0100284 echo "- $@: $$cmd" && echo $$cmd > $@ && \
285 ( eval $$cmd ) >> $@ 2>&1 && \
Jiri Olsaee4ad932013-12-19 14:41:59 +0100286 echo " test: $(call test_O,$@)" >> $@ 2>&1; \
Jiri Olsa095ae692013-03-29 16:11:02 +0100287 $(call test_O,$@) && \
Arnaldo Carvalho de Meloa5c50092014-06-05 17:15:47 -0300288 rm -rf $@ $$TMP_O $$TMP_DEST || (cat $@ ; false)
Jiri Olsa095ae692013-03-29 16:11:02 +0100289
Arnaldo Carvalho de Melo48878052014-01-10 16:46:45 -0300290tarpkg:
291 @cmd="$(PERF)/tests/perf-targz-src-pkg $(PERF)"; \
292 echo "- $@: $$cmd" && echo $$cmd > $@ && \
Josh Poimboeuf004bd892015-12-13 22:18:04 -0600293 ( eval $$cmd ) >> $@ 2>&1 && \
294 rm -f $@
Arnaldo Carvalho de Melo48878052014-01-10 16:46:45 -0300295
Jiri Olsac41c6642015-04-18 22:34:40 +0200296make_kernelsrc:
Wang Nan7be43df2016-01-13 12:17:14 +0000297 @echo "- make -C <kernelsrc> $(PARALLEL_OPT) tools/perf"
Jiri Olsac41c6642015-04-18 22:34:40 +0200298 $(call clean); \
Wang Nan7be43df2016-01-13 12:17:14 +0000299 (make -C ../.. $(PARALLEL_OPT) tools/perf) > $@ 2>&1 && \
Jiri Olsac41c6642015-04-18 22:34:40 +0200300 test -x perf && rm -f $@ || (cat $@ ; false)
301
302make_kernelsrc_tools:
Wang Nan7be43df2016-01-13 12:17:14 +0000303 @echo "- make -C <kernelsrc>/tools $(PARALLEL_OPT) perf"
Jiri Olsac41c6642015-04-18 22:34:40 +0200304 $(call clean); \
Wang Nan7be43df2016-01-13 12:17:14 +0000305 (make -C ../../tools $(PARALLEL_OPT) perf) > $@ 2>&1 && \
Jiri Olsac41c6642015-04-18 22:34:40 +0200306 test -x perf && rm -f $@ || (cat $@ ; false)
307
308all: $(run) $(run_O) tarpkg make_kernelsrc make_kernelsrc_tools
Jiri Olsa095ae692013-03-29 16:11:02 +0100309 @echo OK
310
311out: $(run_O)
312 @echo OK
313
Wang Nan3167eea2016-01-11 13:47:53 +0000314.PHONY: all $(run) $(run_O) tarpkg clean make_kernelsrc make_kernelsrc_tools
Jiri Olsa502819c2015-06-22 14:50:50 +0200315endif # ifndef MK