Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1perf-util-y += util/
2perf-test-y += tests/
3
4ifdef SHELLCHECK
5 TEST_LOGS := $(SHELL_TESTS:%=%.shellcheck_log)
6else
7 SHELL_TESTS :=
8 TEST_LOGS :=
9endif
10
11$(OUTPUT)%.shellcheck_log: %
12 $(call rule_mkdir)
13 $(Q)$(call echo-cmd,test)shellcheck -a -S warning "$<" > $@ || (cat $@ && rm $@ && false)
14
15perf-test-y += $(TEST_LOGS)