mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-01-17 12:00:35 +00:00
This disallows KUNIT=m and RISCV_KPROBES_KUNIT=y, which produces these
relocs_check.sh warnings when RELOCATABLE=y:
WARNING: 3 bad relocations
ffffffff81e24118 R_RISCV_64 kunit_unary_assert_format
ffffffff81e24a60 R_RISCV_64 kunit_binary_assert_format
ffffffff81e269d0 R_RISCV_JUMP_SLOT __kunit_do_failed_assertion
This fixes allmodconfig build.
Reported-by: Inochi Amaoto <inochiama@gmail.com>
Fixes: f2fab612824f ("riscv: Add kprobes KUnit test")
Signed-off-by: Vivian Wang <wangruikang@iscas.ac.cn>
Tested-by: Inochi Amaoto <inochiama@gmail.com>
Reviewed-by: Nam Cao <namcao@linutronix.de>
Link: https://lore.kernel.org/r/20251020-riscv-kunit-kconfig-fix-6-18-v1-2-d773b5d5ce48@iscas.ac.cn
Signed-off-by: Paul Walmsley <pjw@kernel.org>
48 lines
1.6 KiB
Plaintext
48 lines
1.6 KiB
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
menu "arch/riscv/kernel Testing and Coverage"
|
|
|
|
config AS_HAS_ULEB128
|
|
def_bool $(as-instr,.reloc label$(comma) R_RISCV_SET_ULEB128$(comma) 127\n.reloc label$(comma) R_RISCV_SUB_ULEB128$(comma) 127\nlabel:\n.word 0)
|
|
|
|
menuconfig RUNTIME_KERNEL_TESTING_MENU
|
|
bool "arch/riscv/kernel runtime Testing"
|
|
default y
|
|
help
|
|
Enable riscv kernel runtime testing.
|
|
|
|
if RUNTIME_KERNEL_TESTING_MENU
|
|
|
|
config RISCV_MODULE_LINKING_KUNIT
|
|
bool "KUnit test riscv module linking at runtime" if !KUNIT_ALL_TESTS
|
|
depends on KUNIT
|
|
default KUNIT_ALL_TESTS
|
|
help
|
|
Enable this option to test riscv module linking at boot. This will
|
|
enable a module called "test_module_linking".
|
|
|
|
KUnit tests run during boot and output the results to the debug log
|
|
in TAP format (http://testanything.org/). Only useful for kernel devs
|
|
running the KUnit test harness, and not intended for inclusion into a
|
|
production build.
|
|
|
|
For more information on KUnit and unit tests in general please refer
|
|
to the KUnit documentation in Documentation/dev-tools/kunit/.
|
|
|
|
If unsure, say N.
|
|
|
|
config RISCV_KPROBES_KUNIT
|
|
tristate "KUnit test for riscv kprobes" if !KUNIT_ALL_TESTS
|
|
depends on KUNIT
|
|
depends on KPROBES
|
|
default KUNIT_ALL_TESTS
|
|
help
|
|
Enable testing for riscv kprobes. Useful for riscv and/or kprobes
|
|
development. The test verifies that kprobes do not change the behaviour
|
|
of some sample functions.
|
|
|
|
If unsure, say N.
|
|
|
|
endif # RUNTIME_TESTING_MENU
|
|
|
|
endmenu # "arch/riscv/kernel runtime Testing"
|