]> git.karo-electronics.de Git - linux-beck.git/blob - tools/perf/tests/make
fc2a9a31113fffc91848542d6e45903016fd0c17
[linux-beck.git] / tools / perf / tests / make
1 include ../scripts/Makefile.include
2
3 ifndef MK
4 ifeq ($(MAKECMDGOALS),)
5 # no target specified, trigger the whole suite
6 all:
7         @echo "Testing Makefile";      $(MAKE) -sf tests/make MK=Makefile
8         @echo "Testing Makefile.perf"; $(MAKE) -sf tests/make MK=Makefile.perf SET_PARALLEL=1 SET_O=1
9 else
10 # run only specific test over 'Makefile'
11 %:
12         @echo "Testing Makefile";      $(MAKE) -sf tests/make MK=Makefile $@
13 endif
14 else
15 PERF := .
16 O_OPT :=
17
18 ifneq ($(O),)
19   FULL_O := $(shell readlink -f $(O) || echo $(O))
20   ifeq ($(SET_O),1)
21     O_OPT := 'O=$(FULL_O)'
22   endif
23 endif
24
25 PARALLEL_OPT=
26 ifeq ($(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)"
32 endif
33
34 # As per kernel Makefile, avoid funny character set dependencies
35 unexport LC_ALL
36 LC_COLLATE=C
37 LC_NUMERIC=C
38 export LC_COLLATE LC_NUMERIC
39
40 ifeq ($(srctree),)
41 srctree := $(patsubst %/,%,$(dir $(shell pwd)))
42 srctree := $(patsubst %/,%,$(dir $(srctree)))
43 #$(info Determined 'srctree' to be $(srctree))
44 endif
45
46 include $(srctree)/tools/scripts/Makefile.arch
47
48 # FIXME looks like x86 is the only arch running tests ;-)
49 # we need some IS_(32/64) flag to make this generic
50 ifeq ($(ARCH)$(IS_64_BIT), x861)
51 lib = lib64
52 else
53 lib = lib
54 endif
55
56 has = $(shell which $1 2>/dev/null)
57
58 # standard single make variable specified
59 make_clean_all      := clean all
60 make_python_perf_so := python/perf.so
61 make_debug          := DEBUG=1
62 make_no_libperl     := NO_LIBPERL=1
63 make_no_libpython   := NO_LIBPYTHON=1
64 make_no_scripts     := NO_LIBPYTHON=1 NO_LIBPERL=1
65 make_no_newt        := NO_NEWT=1
66 make_no_slang       := NO_SLANG=1
67 make_no_gtk2        := NO_GTK2=1
68 make_no_ui          := NO_NEWT=1 NO_SLANG=1 NO_GTK2=1
69 make_no_demangle    := NO_DEMANGLE=1
70 make_no_libelf      := NO_LIBELF=1
71 make_no_libunwind   := NO_LIBUNWIND=1
72 make_no_libdw_dwarf_unwind := NO_LIBDW_DWARF_UNWIND=1
73 make_no_backtrace   := NO_BACKTRACE=1
74 make_no_libnuma     := NO_LIBNUMA=1
75 make_no_libaudit    := NO_LIBAUDIT=1
76 make_no_libbionic   := NO_LIBBIONIC=1
77 make_no_auxtrace    := NO_AUXTRACE=1
78 make_no_libbpf      := NO_LIBBPF=1
79 make_tags           := tags
80 make_cscope         := cscope
81 make_help           := help
82 make_doc            := doc
83 make_perf_o           := perf.o
84 make_util_map_o       := util/map.o
85 make_util_pmu_bison_o := util/pmu-bison.o
86 make_install        := install
87 make_install_bin    := install-bin
88 make_install_doc    := install-doc
89 make_install_man    := install-man
90 make_install_html   := install-html
91 make_install_info   := install-info
92 make_install_pdf    := install-pdf
93 make_install_prefix       := install prefix=/tmp/krava
94 make_install_prefix_slash := install prefix=/tmp/krava/
95 make_static         := LDFLAGS=-static
96
97 # all the NO_* variable combined
98 make_minimal        := NO_LIBPERL=1 NO_LIBPYTHON=1 NO_NEWT=1 NO_GTK2=1
99 make_minimal        += NO_DEMANGLE=1 NO_LIBELF=1 NO_LIBUNWIND=1 NO_BACKTRACE=1
100 make_minimal        += NO_LIBNUMA=1 NO_LIBAUDIT=1 NO_LIBBIONIC=1
101 make_minimal        += NO_LIBDW_DWARF_UNWIND=1 NO_AUXTRACE=1 NO_LIBBPF=1
102
103 # $(run) contains all available tests
104 run := make_pure
105 # 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
108 ifeq ($(MK),Makefile)
109 run += make_clean_all
110 endif
111 run += make_python_perf_so
112 run += make_debug
113 run += make_no_libperl
114 run += make_no_libpython
115 run += make_no_scripts
116 run += make_no_newt
117 run += make_no_slang
118 run += make_no_gtk2
119 run += make_no_ui
120 run += make_no_demangle
121 run += make_no_libelf
122 run += make_no_libunwind
123 run += make_no_libdw_dwarf_unwind
124 run += make_no_backtrace
125 run += make_no_libnuma
126 run += make_no_libaudit
127 run += make_no_libbionic
128 run += make_no_auxtrace
129 run += make_no_libbpf
130 run += make_help
131 run += make_doc
132 run += make_perf_o
133 run += make_util_map_o
134 run += make_util_pmu_bison_o
135 run += make_install
136 run += make_install_bin
137 run += make_install_prefix
138 run += make_install_prefix_slash
139 # 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
145 run += make_minimal
146 run += make_static
147
148 ifneq ($(call has,ctags),)
149 run += make_tags
150 endif
151 ifneq ($(call has,cscope),)
152 run += make_cscope
153 endif
154
155 # $(run_O) contains same portion of $(run) tests with '_O' attached
156 # to distinguish O=... tests
157 run_O := $(addsuffix _O,$(run))
158
159 # disable some tests for O=...
160 run_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
164 test_make_tags   = test -f tags
165 test_make_cscope = test -f cscope.out
166
167 test_make_tags_O   := $(test_make_tags)
168 test_make_cscope_O := $(test_make_cscope)
169
170 test_ok          := true
171 test_make_help   := $(test_ok)
172 test_make_doc    := $(test_ok)
173 test_make_help_O := $(test_ok)
174 test_make_doc_O  := $(test_ok)
175
176 test_make_python_perf_so := test -f $(PERF)/python/perf.so
177
178 test_make_perf_o           := test -f $(PERF)/perf.o
179 test_make_util_map_o       := test -f $(PERF)/util/map.o
180 test_make_util_pmu_bison_o := test -f $(PERF)/util/pmu-bison.o
181
182 define 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
188 endef
189
190 installed_files_bin := bin/perf
191 installed_files_bin += etc/bash_completion.d/perf
192 installed_files_bin += libexec/perf-core/perf-archive
193
194 installed_files_plugins := $(lib)/traceevent/plugins/plugin_cfg80211.so
195 installed_files_plugins += $(lib)/traceevent/plugins/plugin_scsi.so
196 installed_files_plugins += $(lib)/traceevent/plugins/plugin_xen.so
197 installed_files_plugins += $(lib)/traceevent/plugins/plugin_function.so
198 installed_files_plugins += $(lib)/traceevent/plugins/plugin_sched_switch.so
199 installed_files_plugins += $(lib)/traceevent/plugins/plugin_mac80211.so
200 installed_files_plugins += $(lib)/traceevent/plugins/plugin_kvm.so
201 installed_files_plugins += $(lib)/traceevent/plugins/plugin_kmem.so
202 installed_files_plugins += $(lib)/traceevent/plugins/plugin_hrtimer.so
203 installed_files_plugins += $(lib)/traceevent/plugins/plugin_jbd2.so
204
205 installed_files_all := $(installed_files_bin)
206 installed_files_all += $(installed_files_plugins)
207
208 test_make_install       := $(call test_dest_files,$(installed_files_all))
209 test_make_install_O     := $(call test_dest_files,$(installed_files_all))
210 test_make_install_bin   := $(call test_dest_files,$(installed_files_bin))
211 test_make_install_bin_O := $(call test_dest_files,$(installed_files_bin))
212
213 # We prefix all installed files for make_install_prefix(_slash)
214 # with '/tmp/krava' to match installed/prefix-ed files.
215 installed_files_all_prefix := $(addprefix /tmp/krava/,$(installed_files_all))
216 test_make_install_prefix   :=  $(call test_dest_files,$(installed_files_all_prefix))
217 test_make_install_prefix_O :=  $(call test_dest_files,$(installed_files_all_prefix))
218
219 test_make_install_prefix_slash   := $(test_make_install_prefix)
220 test_make_install_prefix_slash_O := $(test_make_install_prefix_O)
221
222 # FIXME nothing gets installed
223 test_make_install_man    := test -f $$TMP_DEST/share/man/man1/perf.1
224 test_make_install_man_O  := $(test_make_install_man)
225
226 # FIXME nothing gets installed
227 test_make_install_doc    := $(test_ok)
228 test_make_install_doc_O  := $(test_ok)
229
230 # FIXME nothing gets installed
231 test_make_install_html   := $(test_ok)
232 test_make_install_html_O := $(test_ok)
233
234 # FIXME nothing gets installed
235 test_make_install_info   := $(test_ok)
236 test_make_install_info_O := $(test_ok)
237
238 # FIXME nothing gets installed
239 test_make_install_pdf    := $(test_ok)
240 test_make_install_pdf_O  := $(test_ok)
241
242 test_make_python_perf_so_O    := test -f $$TMP_O/python/perf.so
243 test_make_perf_o_O            := test -f $$TMP_O/perf.o
244 test_make_util_map_o_O        := test -f $$TMP_O/util/map.o
245 test_make_util_pmu_bison_o_O := test -f $$TMP_O/util/pmu-bison.o
246
247 test_default = test -x $(PERF)/perf
248 test = $(if $(test_$1),$(test_$1),$(test_default))
249
250 test_default_O = test -x $$TMP_O/perf
251 test_O = $(if $(test_$1),$(test_$1),$(test_default_O))
252
253 all:
254
255 ifdef SHUF
256 run := $(shell shuf -e $(run))
257 run_O := $(shell shuf -e $(run_O))
258 endif
259
260 ifdef DEBUG
261 d := $(info run   $(run))
262 d := $(info run_O $(run_O))
263 endif
264
265 MAKEFLAGS := --no-print-directory
266
267 clean := @(cd $(PERF); make -s -f $(MK) $(O_OPT) clean >/dev/null)
268
269 $(run):
270         $(call clean)
271         @TMP_DEST=$$(mktemp -d); \
272         cmd="cd $(PERF) && make -f $(MK) $(PARALLEL_OPT) $(O_OPT) DESTDIR=$$TMP_DEST $($@)"; \
273         echo "- $@: $$cmd" && echo $$cmd > $@ && \
274         ( eval $$cmd ) >> $@ 2>&1; \
275         echo "  test: $(call test,$@)" >> $@ 2>&1; \
276         $(call test,$@) && \
277         rm -rf $@ $$TMP_DEST || (cat $@ ; false)
278
279 $(run_O):
280         $(call clean)
281         @TMP_O=$$(mktemp -d); \
282         TMP_DEST=$$(mktemp -d); \
283         cmd="cd $(PERF) && make -f $(MK) $(PARALLEL_OPT) O=$$TMP_O DESTDIR=$$TMP_DEST $($(patsubst %_O,%,$@))"; \
284         echo "- $@: $$cmd" && echo $$cmd > $@ && \
285         ( eval $$cmd ) >> $@ 2>&1 && \
286         echo "  test: $(call test_O,$@)" >> $@ 2>&1; \
287         $(call test_O,$@) && \
288         rm -rf $@ $$TMP_O $$TMP_DEST || (cat $@ ; false)
289
290 tarpkg:
291         @cmd="$(PERF)/tests/perf-targz-src-pkg $(PERF)"; \
292         echo "- $@: $$cmd" && echo $$cmd > $@ && \
293         ( eval $$cmd ) >> $@ 2>&1 && \
294         rm -f $@
295
296 make_kernelsrc:
297         @echo "- make -C <kernelsrc> $(PARALLEL_OPT) tools/perf"
298         $(call clean); \
299         (make -C ../.. $(PARALLEL_OPT) tools/perf) > $@ 2>&1 && \
300         test -x perf && rm -f $@ || (cat $@ ; false)
301
302 make_kernelsrc_tools:
303         @echo "- make -C <kernelsrc>/tools $(PARALLEL_OPT) perf"
304         $(call clean); \
305         (make -C ../../tools $(PARALLEL_OPT) perf) > $@ 2>&1 && \
306         test -x perf && rm -f $@ || (cat $@ ; false)
307
308 all: $(run) $(run_O) tarpkg make_kernelsrc make_kernelsrc_tools
309         @echo OK
310
311 out: $(run_O)
312         @echo OK
313
314 .PHONY: all $(run) $(run_O) tarpkg clean make_kernelsrc make_kernelsrc_tools
315 endif # ifndef MK