Linux Audio

Check our new training course

Linux BSP development engineering services

Need help to port Linux and bootloaders to your hardware?
Loading...
Note: File does not exist in v3.5.6.
 1perf-util-y += util/
 2perf-test-y += tests/
 3
 4ifdef SHELLCHECK
 5  SHELL_TESTS := entry/syscalls/syscalltbl.sh
 6  TEST_LOGS := $(SHELL_TESTS:%=%.shellcheck_log)
 7else
 8  SHELL_TESTS :=
 9  TEST_LOGS :=
10endif
11
12$(OUTPUT)%.shellcheck_log: %
13	$(call rule_mkdir)
14	$(Q)$(call echo-cmd,test)shellcheck -a -S warning "$<" > $@ || (cat $@ && rm $@ && false)
15
16perf-test-y += $(TEST_LOGS)