mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-08-18 01:27:40 +00:00

test__x86_sample_parsing is identical to test__sample_parsing except it explicitly tested PERF_SAMPLE_WEIGHT_STRUCT. Now the parsing code is common move the PERF_SAMPLE_WEIGHT_STRUCT to the common sample parsing test and remove the x86 version. Signed-off-by: Ian Rogers <irogers@google.com> Link: https://lore.kernel.org/r/20250724163302.596743-22-irogers@google.com Signed-off-by: Namhyung Kim <namhyung@kernel.org>
28 lines
741 B
Plaintext
28 lines
741 B
Plaintext
perf-test-$(CONFIG_DWARF_UNWIND) += regs_load.o
|
|
perf-test-$(CONFIG_DWARF_UNWIND) += dwarf-unwind.o
|
|
|
|
perf-test-y += arch-tests.o
|
|
perf-test-y += hybrid.o
|
|
perf-test-$(CONFIG_AUXTRACE) += intel-pt-test.o
|
|
ifeq ($(CONFIG_EXTRA_TESTS),y)
|
|
perf-test-$(CONFIG_AUXTRACE) += insn-x86.o
|
|
endif
|
|
perf-test-$(CONFIG_X86_64) += bp-modify.o
|
|
perf-test-y += amd-ibs-via-core-pmu.o
|
|
perf-test-y += amd-ibs-period.o
|
|
perf-test-y += topdown.o
|
|
|
|
ifdef SHELLCHECK
|
|
SHELL_TESTS := gen-insn-x86-dat.sh
|
|
SHELL_TEST_LOGS := $(SHELL_TESTS:%=%.shellcheck_log)
|
|
else
|
|
SHELL_TESTS :=
|
|
SHELL_TEST_LOGS :=
|
|
endif
|
|
|
|
$(OUTPUT)%.shellcheck_log: %
|
|
$(call rule_mkdir)
|
|
$(Q)$(call echo-cmd,test)$(SHELLCHECK) "$<" > $@ || (cat $@ && rm $@ && false)
|
|
|
|
perf-test-y += $(SHELL_TEST_LOGS)
|