Build (168910d0f9377b23b98404c88c13d4c51cdc5f15) Build (8a54784e708b51c1dcead1471bbee5fb31ae92cc)
1# SPDX-License-Identifier: GPL-2.0
2
3perf-test-y += builtin-test.o
4perf-test-y += tests-scripts.o
5perf-test-y += parse-events.o
6perf-test-y += dso-data.o
7perf-test-y += vmlinux-kallsyms.o
8perf-test-y += openat-syscall.o

--- 90 unchanged lines hidden (view full) ---

99 MYPY_TEST_LOGS :=
100endif
101
102$(OUTPUT)%.mypy_log: %
103 $(call rule_mkdir)
104 $(Q)$(call echo-cmd,test)mypy "$<" > $@ || (cat $@ && rm $@ && false)
105
106perf-test-y += $(MYPY_TEST_LOGS)
1# SPDX-License-Identifier: GPL-2.0
2
3perf-test-y += builtin-test.o
4perf-test-y += tests-scripts.o
5perf-test-y += parse-events.o
6perf-test-y += dso-data.o
7perf-test-y += vmlinux-kallsyms.o
8perf-test-y += openat-syscall.o

--- 90 unchanged lines hidden (view full) ---

99 MYPY_TEST_LOGS :=
100endif
101
102$(OUTPUT)%.mypy_log: %
103 $(call rule_mkdir)
104 $(Q)$(call echo-cmd,test)mypy "$<" > $@ || (cat $@ && rm $@ && false)
105
106perf-test-y += $(MYPY_TEST_LOGS)
107
108ifdef PYLINT
109 PY_TESTS := $(shell find tests/shell -type f -name '*.py')
110 PYLINT_TEST_LOGS := $(PY_TESTS:tests/shell/%=shell/%.pylint_log)
111else
112 PYLINT_TEST_LOGS :=
113endif
114
115$(OUTPUT)%.pylint_log: %
116 $(call rule_mkdir)
117 $(Q)$(call echo-cmd,test)pylint "$<" > $@ || (cat $@ && rm $@ && false)
118
119perf-test-y += $(PYLINT_TEST_LOGS)