mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
724c299c6a
Add KUnit test for hw_breakpoint constraints accounting, with various interesting mixes of breakpoint targets (some care was taken to catch interesting corner cases via bug-injection). The test cannot be built as a module because it requires access to hw_breakpoint_slots(), which is not inlinable or exported on all architectures. Signed-off-by: Marco Elver <elver@google.com> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Reviewed-by: Dmitry Vyukov <dvyukov@google.com> Acked-by: Ian Rogers <irogers@google.com> Link: https://lore.kernel.org/r/20220829124719.675715-2-elver@google.com
7 lines
228 B
Makefile
7 lines
228 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
obj-y := core.o ring_buffer.o callchain.o
|
|
|
|
obj-$(CONFIG_HAVE_HW_BREAKPOINT) += hw_breakpoint.o
|
|
obj-$(CONFIG_HW_BREAKPOINT_KUNIT_TEST) += hw_breakpoint_test.o
|
|
obj-$(CONFIG_UPROBES) += uprobes.o
|