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