blob: bfe1962da0df00b4efd92593e908d45a2ee90f47 [file] [log] [blame]
Jiri Olsa502819c2015-06-22 14:50:50 +02001ifndef MK
2ifeq ($(MAKECMDGOALS),)
3# no target specified, trigger the whole suite
4all:
5 @echo "Testing Makefile"; $(MAKE) -sf tests/make MK=Makefile
6 @echo "Testing Makefile.perf"; $(MAKE) -sf tests/make MK=Makefile.perf
7else
8# run only specific test over 'Makefile'
9%:
10 @echo "Testing Makefile"; $(MAKE) -sf tests/make MK=Makefile $@
11endif
12else
Jiri Olsa095ae692013-03-29 16:11:02 +010013PERF := .
Jiri Olsa095ae692013-03-29 16:11:02 +010014
Jiri Olsaf7c64472014-01-03 15:32:33 +010015include config/Makefile.arch
16
17# FIXME looks like x86 is the only arch running tests ;-)
18# we need some IS_(32/64) flag to make this generic
H.J. Lu76aea772015-03-17 15:27:48 -070019ifeq ($(ARCH)$(IS_64_BIT), x861)
Jiri Olsaf7c64472014-01-03 15:32:33 +010020lib = lib64
21else
22lib = lib
23endif
24
Jiri Olsa0659e662013-07-22 14:43:30 +020025has = $(shell which $1 2>/dev/null)
26
Jiri Olsa095ae692013-03-29 16:11:02 +010027# standard single make variable specified
28make_clean_all := clean all
29make_python_perf_so := python/perf.so
30make_debug := DEBUG=1
31make_no_libperl := NO_LIBPERL=1
32make_no_libpython := NO_LIBPYTHON=1
33make_no_scripts := NO_LIBPYTHON=1 NO_LIBPERL=1
34make_no_newt := NO_NEWT=1
35make_no_slang := NO_SLANG=1
36make_no_gtk2 := NO_GTK2=1
37make_no_ui := NO_NEWT=1 NO_SLANG=1 NO_GTK2=1
38make_no_demangle := NO_DEMANGLE=1
39make_no_libelf := NO_LIBELF=1
40make_no_libunwind := NO_LIBUNWIND=1
Jiri Olsa9e8c06e2014-02-19 16:52:59 +010041make_no_libdw_dwarf_unwind := NO_LIBDW_DWARF_UNWIND=1
Jiri Olsa095ae692013-03-29 16:11:02 +010042make_no_backtrace := NO_BACKTRACE=1
43make_no_libnuma := NO_LIBNUMA=1
44make_no_libaudit := NO_LIBAUDIT=1
45make_no_libbionic := NO_LIBBIONIC=1
Adrian Huntere31f0d02015-04-30 17:37:27 +030046make_no_auxtrace := NO_AUXTRACE=1
Jiri Olsa095ae692013-03-29 16:11:02 +010047make_tags := tags
48make_cscope := cscope
49make_help := help
50make_doc := doc
Jiri Olsa2a94f6c2014-02-19 11:21:39 +010051make_perf_o := perf.o
52make_util_map_o := util/map.o
53make_util_pmu_bison_o := util/pmu-bison.o
Jiri Olsac0ec1102013-07-22 14:43:33 +020054make_install := install
55make_install_bin := install-bin
Jiri Olsadbad4182013-07-22 14:43:34 +020056make_install_doc := install-doc
57make_install_man := install-man
58make_install_html := install-html
59make_install_info := install-info
60make_install_pdf := install-pdf
Jiri Olsa611ec122014-04-29 09:53:40 +020061make_static := LDFLAGS=-static
Jiri Olsa095ae692013-03-29 16:11:02 +010062
63# all the NO_* variable combined
64make_minimal := NO_LIBPERL=1 NO_LIBPYTHON=1 NO_NEWT=1 NO_GTK2=1
65make_minimal += NO_DEMANGLE=1 NO_LIBELF=1 NO_LIBUNWIND=1 NO_BACKTRACE=1
66make_minimal += NO_LIBNUMA=1 NO_LIBAUDIT=1 NO_LIBBIONIC=1
Adrian Huntere31f0d02015-04-30 17:37:27 +030067make_minimal += NO_LIBDW_DWARF_UNWIND=1 NO_AUXTRACE=1
Jiri Olsa095ae692013-03-29 16:11:02 +010068
69# $(run) contains all available tests
70run := make_pure
Jiri Olsa502819c2015-06-22 14:50:50 +020071# Targets 'clean all' can be run together only through top level
72# Makefile because we detect clean target in Makefile.perf and
73# disable features detection
74ifeq ($(MK),Makefile)
Jiri Olsa095ae692013-03-29 16:11:02 +010075run += make_clean_all
Jiri Olsa502819c2015-06-22 14:50:50 +020076endif
Jiri Olsa095ae692013-03-29 16:11:02 +010077run += make_python_perf_so
78run += make_debug
79run += make_no_libperl
80run += make_no_libpython
81run += make_no_scripts
82run += make_no_newt
83run += make_no_slang
84run += make_no_gtk2
85run += make_no_ui
86run += make_no_demangle
87run += make_no_libelf
88run += make_no_libunwind
Jiri Olsa9e8c06e2014-02-19 16:52:59 +010089run += make_no_libdw_dwarf_unwind
Jiri Olsa095ae692013-03-29 16:11:02 +010090run += make_no_backtrace
91run += make_no_libnuma
92run += make_no_libaudit
93run += make_no_libbionic
Adrian Huntere31f0d02015-04-30 17:37:27 +030094run += make_no_auxtrace
Jiri Olsa095ae692013-03-29 16:11:02 +010095run += make_help
96run += make_doc
97run += make_perf_o
98run += make_util_map_o
Jiri Olsa2a94f6c2014-02-19 11:21:39 +010099run += make_util_pmu_bison_o
Jiri Olsac0ec1102013-07-22 14:43:33 +0200100run += make_install
101run += make_install_bin
Jiri Olsadbad4182013-07-22 14:43:34 +0200102# FIXME 'install-*' commented out till they're fixed
103# run += make_install_doc
104# run += make_install_man
105# run += make_install_html
106# run += make_install_info
107# run += make_install_pdf
Jiri Olsa095ae692013-03-29 16:11:02 +0100108run += make_minimal
Jiri Olsa611ec122014-04-29 09:53:40 +0200109run += make_static
Jiri Olsa095ae692013-03-29 16:11:02 +0100110
Jiri Olsa0659e662013-07-22 14:43:30 +0200111ifneq ($(call has,ctags),)
112run += make_tags
113endif
114ifneq ($(call has,cscope),)
115run += make_cscope
116endif
117
Jiri Olsa095ae692013-03-29 16:11:02 +0100118# $(run_O) contains same portion of $(run) tests with '_O' attached
119# to distinguish O=... tests
120run_O := $(addsuffix _O,$(run))
121
122# disable some tests for O=...
123run_O := $(filter-out make_python_perf_so_O,$(run_O))
124
125# define test for each compile as 'test_NAME' variable
126# with the test itself as a value
127test_make_tags = test -f tags
128test_make_cscope = test -f cscope.out
129
130test_make_tags_O := $(test_make_tags)
131test_make_cscope_O := $(test_make_cscope)
132
133test_ok := true
134test_make_help := $(test_ok)
135test_make_doc := $(test_ok)
136test_make_help_O := $(test_ok)
137test_make_doc_O := $(test_ok)
138
139test_make_python_perf_so := test -f $(PERF)/python/perf.so
140
Jiri Olsa2a94f6c2014-02-19 11:21:39 +0100141test_make_perf_o := test -f $(PERF)/perf.o
142test_make_util_map_o := test -f $(PERF)/util/map.o
143test_make_util_pmu_bison_o := test -f $(PERF)/util/pmu-bison.o
Jiri Olsa095ae692013-03-29 16:11:02 +0100144
Jiri Olsaee4ad932013-12-19 14:41:59 +0100145define test_dest_files
146 for file in $(1); do \
147 if [ ! -x $$TMP_DEST/$$file ]; then \
148 echo " failed to find: $$file"; \
149 fi \
150 done
151endef
152
153installed_files_bin := bin/perf
154installed_files_bin += etc/bash_completion.d/perf
155installed_files_bin += libexec/perf-core/perf-archive
156
Jiri Olsaf7c64472014-01-03 15:32:33 +0100157installed_files_plugins := $(lib)/traceevent/plugins/plugin_cfg80211.so
158installed_files_plugins += $(lib)/traceevent/plugins/plugin_scsi.so
159installed_files_plugins += $(lib)/traceevent/plugins/plugin_xen.so
160installed_files_plugins += $(lib)/traceevent/plugins/plugin_function.so
161installed_files_plugins += $(lib)/traceevent/plugins/plugin_sched_switch.so
162installed_files_plugins += $(lib)/traceevent/plugins/plugin_mac80211.so
163installed_files_plugins += $(lib)/traceevent/plugins/plugin_kvm.so
164installed_files_plugins += $(lib)/traceevent/plugins/plugin_kmem.so
165installed_files_plugins += $(lib)/traceevent/plugins/plugin_hrtimer.so
166installed_files_plugins += $(lib)/traceevent/plugins/plugin_jbd2.so
Jiri Olsaee4ad932013-12-19 14:41:59 +0100167
168installed_files_all := $(installed_files_bin)
169installed_files_all += $(installed_files_plugins)
170
171test_make_install := $(call test_dest_files,$(installed_files_all))
172test_make_install_O := $(call test_dest_files,$(installed_files_all))
173test_make_install_bin := $(call test_dest_files,$(installed_files_bin))
174test_make_install_bin_O := $(call test_dest_files,$(installed_files_bin))
Jiri Olsac0ec1102013-07-22 14:43:33 +0200175
Jiri Olsadbad4182013-07-22 14:43:34 +0200176# FIXME nothing gets installed
177test_make_install_man := test -f $$TMP_DEST/share/man/man1/perf.1
178test_make_install_man_O := $(test_make_install_man)
179
180# FIXME nothing gets installed
181test_make_install_doc := $(test_ok)
182test_make_install_doc_O := $(test_ok)
183
184# FIXME nothing gets installed
185test_make_install_html := $(test_ok)
186test_make_install_html_O := $(test_ok)
187
188# FIXME nothing gets installed
189test_make_install_info := $(test_ok)
190test_make_install_info_O := $(test_ok)
191
192# FIXME nothing gets installed
193test_make_install_pdf := $(test_ok)
194test_make_install_pdf_O := $(test_ok)
195
Jiri Olsa04b01a12014-02-19 11:21:38 +0100196test_make_python_perf_so_O := test -f $$TMP_O/python/perf.so
197test_make_perf_o_O := test -f $$TMP_O/perf.o
198test_make_util_map_o_O := test -f $$TMP_O/util/map.o
Jiri Olsa2a94f6c2014-02-19 11:21:39 +0100199test_make_util_pmu_bison_o_O := test -f $$TMP_O/util/pmu-bison.o
Jiri Olsa095ae692013-03-29 16:11:02 +0100200
201test_default = test -x $(PERF)/perf
202test = $(if $(test_$1),$(test_$1),$(test_default))
203
Jiri Olsa8ba7cde2013-07-22 14:43:31 +0200204test_default_O = test -x $$TMP_O/perf
Jiri Olsa095ae692013-03-29 16:11:02 +0100205test_O = $(if $(test_$1),$(test_$1),$(test_default_O))
206
207all:
208
209ifdef DEBUG
210d := $(info run $(run))
211d := $(info run_O $(run_O))
212endif
213
214MAKEFLAGS := --no-print-directory
215
216clean := @(cd $(PERF); make -s -f $(MK) clean >/dev/null)
217
218$(run):
219 $(call clean)
Jiri Olsac9311672013-07-22 14:43:32 +0200220 @TMP_DEST=$$(mktemp -d); \
221 cmd="cd $(PERF) && make -f $(MK) DESTDIR=$$TMP_DEST $($@)"; \
Jiri Olsa095ae692013-03-29 16:11:02 +0100222 echo "- $@: $$cmd" && echo $$cmd > $@ && \
223 ( eval $$cmd ) >> $@ 2>&1; \
Jiri Olsaee4ad932013-12-19 14:41:59 +0100224 echo " test: $(call test,$@)" >> $@ 2>&1; \
Jiri Olsa095ae692013-03-29 16:11:02 +0100225 $(call test,$@) && \
Arnaldo Carvalho de Meloa5c50092014-06-05 17:15:47 -0300226 rm -rf $@ $$TMP_DEST || (cat $@ ; false)
Jiri Olsa095ae692013-03-29 16:11:02 +0100227
228$(run_O):
229 $(call clean)
Jiri Olsa8ba7cde2013-07-22 14:43:31 +0200230 @TMP_O=$$(mktemp -d); \
Jiri Olsac9311672013-07-22 14:43:32 +0200231 TMP_DEST=$$(mktemp -d); \
232 cmd="cd $(PERF) && make -f $(MK) O=$$TMP_O DESTDIR=$$TMP_DEST $($(patsubst %_O,%,$@))"; \
Jiri Olsa095ae692013-03-29 16:11:02 +0100233 echo "- $@: $$cmd" && echo $$cmd > $@ && \
234 ( eval $$cmd ) >> $@ 2>&1 && \
Jiri Olsaee4ad932013-12-19 14:41:59 +0100235 echo " test: $(call test_O,$@)" >> $@ 2>&1; \
Jiri Olsa095ae692013-03-29 16:11:02 +0100236 $(call test_O,$@) && \
Arnaldo Carvalho de Meloa5c50092014-06-05 17:15:47 -0300237 rm -rf $@ $$TMP_O $$TMP_DEST || (cat $@ ; false)
Jiri Olsa095ae692013-03-29 16:11:02 +0100238
Arnaldo Carvalho de Melo48878052014-01-10 16:46:45 -0300239tarpkg:
240 @cmd="$(PERF)/tests/perf-targz-src-pkg $(PERF)"; \
241 echo "- $@: $$cmd" && echo $$cmd > $@ && \
242 ( eval $$cmd ) >> $@ 2>&1
Arnaldo Carvalho de Melo48878052014-01-10 16:46:45 -0300243
Jiri Olsac41c6642015-04-18 22:34:40 +0200244make_kernelsrc:
Jiri Olsa502819c2015-06-22 14:50:50 +0200245 @echo "- make -C <kernelsrc> tools/perf"
Jiri Olsac41c6642015-04-18 22:34:40 +0200246 $(call clean); \
247 (make -C ../.. tools/perf) > $@ 2>&1 && \
248 test -x perf && rm -f $@ || (cat $@ ; false)
249
250make_kernelsrc_tools:
Jiri Olsa502819c2015-06-22 14:50:50 +0200251 @echo "- make -C <kernelsrc>/tools perf"
Jiri Olsac41c6642015-04-18 22:34:40 +0200252 $(call clean); \
253 (make -C ../../tools perf) > $@ 2>&1 && \
254 test -x perf && rm -f $@ || (cat $@ ; false)
255
256all: $(run) $(run_O) tarpkg make_kernelsrc make_kernelsrc_tools
Jiri Olsa095ae692013-03-29 16:11:02 +0100257 @echo OK
258
259out: $(run_O)
260 @echo OK
261
Arnaldo Carvalho de Melo48878052014-01-10 16:46:45 -0300262.PHONY: all $(run) $(run_O) tarpkg clean
Jiri Olsa502819c2015-06-22 14:50:50 +0200263endif # ifndef MK