]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blob - tools/perf/tests/make
Merge tag 'tegra-for-4.3-cleanup' of git://git.kernel.org/pub/scm/linux/kernel/git...
[mirror_ubuntu-eoan-kernel.git] / tools / perf / tests / make
1 ifndef MK
2 ifeq ($(MAKECMDGOALS),)
3 # no target specified, trigger the whole suite
4 all:
5 @echo "Testing Makefile"; $(MAKE) -sf tests/make MK=Makefile
6 @echo "Testing Makefile.perf"; $(MAKE) -sf tests/make MK=Makefile.perf
7 else
8 # run only specific test over 'Makefile'
9 %:
10 @echo "Testing Makefile"; $(MAKE) -sf tests/make MK=Makefile $@
11 endif
12 else
13 PERF := .
14
15 include 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
19 ifeq ($(ARCH)$(IS_64_BIT), x861)
20 lib = lib64
21 else
22 lib = lib
23 endif
24
25 has = $(shell which $1 2>/dev/null)
26
27 # standard single make variable specified
28 make_clean_all := clean all
29 make_python_perf_so := python/perf.so
30 make_debug := DEBUG=1
31 make_no_libperl := NO_LIBPERL=1
32 make_no_libpython := NO_LIBPYTHON=1
33 make_no_scripts := NO_LIBPYTHON=1 NO_LIBPERL=1
34 make_no_newt := NO_NEWT=1
35 make_no_slang := NO_SLANG=1
36 make_no_gtk2 := NO_GTK2=1
37 make_no_ui := NO_NEWT=1 NO_SLANG=1 NO_GTK2=1
38 make_no_demangle := NO_DEMANGLE=1
39 make_no_libelf := NO_LIBELF=1
40 make_no_libunwind := NO_LIBUNWIND=1
41 make_no_libdw_dwarf_unwind := NO_LIBDW_DWARF_UNWIND=1
42 make_no_backtrace := NO_BACKTRACE=1
43 make_no_libnuma := NO_LIBNUMA=1
44 make_no_libaudit := NO_LIBAUDIT=1
45 make_no_libbionic := NO_LIBBIONIC=1
46 make_no_auxtrace := NO_AUXTRACE=1
47 make_tags := tags
48 make_cscope := cscope
49 make_help := help
50 make_doc := doc
51 make_perf_o := perf.o
52 make_util_map_o := util/map.o
53 make_util_pmu_bison_o := util/pmu-bison.o
54 make_install := install
55 make_install_bin := install-bin
56 make_install_doc := install-doc
57 make_install_man := install-man
58 make_install_html := install-html
59 make_install_info := install-info
60 make_install_pdf := install-pdf
61 make_install_prefix := install prefix=/tmp/krava
62 make_static := LDFLAGS=-static
63
64 # all the NO_* variable combined
65 make_minimal := NO_LIBPERL=1 NO_LIBPYTHON=1 NO_NEWT=1 NO_GTK2=1
66 make_minimal += NO_DEMANGLE=1 NO_LIBELF=1 NO_LIBUNWIND=1 NO_BACKTRACE=1
67 make_minimal += NO_LIBNUMA=1 NO_LIBAUDIT=1 NO_LIBBIONIC=1
68 make_minimal += NO_LIBDW_DWARF_UNWIND=1 NO_AUXTRACE=1
69
70 # $(run) contains all available tests
71 run := make_pure
72 # Targets 'clean all' can be run together only through top level
73 # Makefile because we detect clean target in Makefile.perf and
74 # disable features detection
75 ifeq ($(MK),Makefile)
76 run += make_clean_all
77 endif
78 run += make_python_perf_so
79 run += make_debug
80 run += make_no_libperl
81 run += make_no_libpython
82 run += make_no_scripts
83 run += make_no_newt
84 run += make_no_slang
85 run += make_no_gtk2
86 run += make_no_ui
87 run += make_no_demangle
88 run += make_no_libelf
89 run += make_no_libunwind
90 run += make_no_libdw_dwarf_unwind
91 run += make_no_backtrace
92 run += make_no_libnuma
93 run += make_no_libaudit
94 run += make_no_libbionic
95 run += make_no_auxtrace
96 run += make_help
97 run += make_doc
98 run += make_perf_o
99 run += make_util_map_o
100 run += make_util_pmu_bison_o
101 run += make_install
102 run += make_install_bin
103 run += make_install_prefix
104 # FIXME 'install-*' commented out till they're fixed
105 # run += make_install_doc
106 # run += make_install_man
107 # run += make_install_html
108 # run += make_install_info
109 # run += make_install_pdf
110 run += make_minimal
111 run += make_static
112
113 ifneq ($(call has,ctags),)
114 run += make_tags
115 endif
116 ifneq ($(call has,cscope),)
117 run += make_cscope
118 endif
119
120 # $(run_O) contains same portion of $(run) tests with '_O' attached
121 # to distinguish O=... tests
122 run_O := $(addsuffix _O,$(run))
123
124 # disable some tests for O=...
125 run_O := $(filter-out make_python_perf_so_O,$(run_O))
126
127 # define test for each compile as 'test_NAME' variable
128 # with the test itself as a value
129 test_make_tags = test -f tags
130 test_make_cscope = test -f cscope.out
131
132 test_make_tags_O := $(test_make_tags)
133 test_make_cscope_O := $(test_make_cscope)
134
135 test_ok := true
136 test_make_help := $(test_ok)
137 test_make_doc := $(test_ok)
138 test_make_help_O := $(test_ok)
139 test_make_doc_O := $(test_ok)
140
141 test_make_python_perf_so := test -f $(PERF)/python/perf.so
142
143 test_make_perf_o := test -f $(PERF)/perf.o
144 test_make_util_map_o := test -f $(PERF)/util/map.o
145 test_make_util_pmu_bison_o := test -f $(PERF)/util/pmu-bison.o
146
147 define test_dest_files
148 for file in $(1); do \
149 if [ ! -x $$TMP_DEST/$$file ]; then \
150 echo " failed to find: $$file"; \
151 fi \
152 done
153 endef
154
155 installed_files_bin := bin/perf
156 installed_files_bin += etc/bash_completion.d/perf
157 installed_files_bin += libexec/perf-core/perf-archive
158
159 installed_files_plugins := $(lib)/traceevent/plugins/plugin_cfg80211.so
160 installed_files_plugins += $(lib)/traceevent/plugins/plugin_scsi.so
161 installed_files_plugins += $(lib)/traceevent/plugins/plugin_xen.so
162 installed_files_plugins += $(lib)/traceevent/plugins/plugin_function.so
163 installed_files_plugins += $(lib)/traceevent/plugins/plugin_sched_switch.so
164 installed_files_plugins += $(lib)/traceevent/plugins/plugin_mac80211.so
165 installed_files_plugins += $(lib)/traceevent/plugins/plugin_kvm.so
166 installed_files_plugins += $(lib)/traceevent/plugins/plugin_kmem.so
167 installed_files_plugins += $(lib)/traceevent/plugins/plugin_hrtimer.so
168 installed_files_plugins += $(lib)/traceevent/plugins/plugin_jbd2.so
169
170 installed_files_all := $(installed_files_bin)
171 installed_files_all += $(installed_files_plugins)
172
173 test_make_install := $(call test_dest_files,$(installed_files_all))
174 test_make_install_O := $(call test_dest_files,$(installed_files_all))
175 test_make_install_bin := $(call test_dest_files,$(installed_files_bin))
176 test_make_install_bin_O := $(call test_dest_files,$(installed_files_bin))
177
178 # We prefix all installed files for make_install_prefix
179 # with '/tmp/krava' to match installed/prefix-ed files.
180 installed_files_all_prefix := $(addprefix /tmp/krava/,$(installed_files_all))
181 test_make_install_prefix := $(call test_dest_files,$(installed_files_all_prefix))
182 test_make_install_prefix_O := $(call test_dest_files,$(installed_files_all_prefix))
183
184 # FIXME nothing gets installed
185 test_make_install_man := test -f $$TMP_DEST/share/man/man1/perf.1
186 test_make_install_man_O := $(test_make_install_man)
187
188 # FIXME nothing gets installed
189 test_make_install_doc := $(test_ok)
190 test_make_install_doc_O := $(test_ok)
191
192 # FIXME nothing gets installed
193 test_make_install_html := $(test_ok)
194 test_make_install_html_O := $(test_ok)
195
196 # FIXME nothing gets installed
197 test_make_install_info := $(test_ok)
198 test_make_install_info_O := $(test_ok)
199
200 # FIXME nothing gets installed
201 test_make_install_pdf := $(test_ok)
202 test_make_install_pdf_O := $(test_ok)
203
204 test_make_python_perf_so_O := test -f $$TMP_O/python/perf.so
205 test_make_perf_o_O := test -f $$TMP_O/perf.o
206 test_make_util_map_o_O := test -f $$TMP_O/util/map.o
207 test_make_util_pmu_bison_o_O := test -f $$TMP_O/util/pmu-bison.o
208
209 test_default = test -x $(PERF)/perf
210 test = $(if $(test_$1),$(test_$1),$(test_default))
211
212 test_default_O = test -x $$TMP_O/perf
213 test_O = $(if $(test_$1),$(test_$1),$(test_default_O))
214
215 all:
216
217 ifdef DEBUG
218 d := $(info run $(run))
219 d := $(info run_O $(run_O))
220 endif
221
222 MAKEFLAGS := --no-print-directory
223
224 clean := @(cd $(PERF); make -s -f $(MK) clean >/dev/null)
225
226 $(run):
227 $(call clean)
228 @TMP_DEST=$$(mktemp -d); \
229 cmd="cd $(PERF) && make -f $(MK) DESTDIR=$$TMP_DEST $($@)"; \
230 echo "- $@: $$cmd" && echo $$cmd > $@ && \
231 ( eval $$cmd ) >> $@ 2>&1; \
232 echo " test: $(call test,$@)" >> $@ 2>&1; \
233 $(call test,$@) && \
234 rm -rf $@ $$TMP_DEST || (cat $@ ; false)
235
236 $(run_O):
237 $(call clean)
238 @TMP_O=$$(mktemp -d); \
239 TMP_DEST=$$(mktemp -d); \
240 cmd="cd $(PERF) && make -f $(MK) O=$$TMP_O DESTDIR=$$TMP_DEST $($(patsubst %_O,%,$@))"; \
241 echo "- $@: $$cmd" && echo $$cmd > $@ && \
242 ( eval $$cmd ) >> $@ 2>&1 && \
243 echo " test: $(call test_O,$@)" >> $@ 2>&1; \
244 $(call test_O,$@) && \
245 rm -rf $@ $$TMP_O $$TMP_DEST || (cat $@ ; false)
246
247 tarpkg:
248 @cmd="$(PERF)/tests/perf-targz-src-pkg $(PERF)"; \
249 echo "- $@: $$cmd" && echo $$cmd > $@ && \
250 ( eval $$cmd ) >> $@ 2>&1
251
252 make_kernelsrc:
253 @echo "- make -C <kernelsrc> tools/perf"
254 $(call clean); \
255 (make -C ../.. tools/perf) > $@ 2>&1 && \
256 test -x perf && rm -f $@ || (cat $@ ; false)
257
258 make_kernelsrc_tools:
259 @echo "- make -C <kernelsrc>/tools perf"
260 $(call clean); \
261 (make -C ../../tools perf) > $@ 2>&1 && \
262 test -x perf && rm -f $@ || (cat $@ ; false)
263
264 all: $(run) $(run_O) tarpkg make_kernelsrc make_kernelsrc_tools
265 @echo OK
266
267 out: $(run_O)
268 @echo OK
269
270 .PHONY: all $(run) $(run_O) tarpkg clean
271 endif # ifndef MK