diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2025-03-27 19:06:07 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2025-03-27 19:06:07 -0700 |
| commit | a10c7949adf94356e56d5c8878f6fc3f25bd0c15 (patch) | |
| tree | 0e948cdf4436cd4da7168d84c00989fd0fec62e6 /lib/tests/Makefile | |
| parent | 8e324a5c9849e4a8225e38facdcc1a60faa4227a (diff) | |
| parent | 2e0cf2b32f72b20b0db5cc665cd8465d0f257278 (diff) | |
| download | linux-a10c7949adf94356e56d5c8878f6fc3f25bd0c15.tar.gz linux-a10c7949adf94356e56d5c8878f6fc3f25bd0c15.tar.bz2 linux-a10c7949adf94356e56d5c8878f6fc3f25bd0c15.zip | |
Merge tag 'linux_kselftest-kunit-6.15-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest
Pull kunit updates from Shuah Khan:
"kunit tool:
- Changes to kunit tool to use qboot on QEMU x86_64, and build GDB
scripts
- Fixes kunit tool bug in parsing test plan
- Adds test to kunit tool to check parsing late test plan
kunit:
- Clarifies kunit_skip() argument name
- Adds Kunit check for the longest symbol length
- Changes qemu_configs for sparc to use Zilog console"
* tag 'linux_kselftest-kunit-6.15-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest:
kunit: tool: add test to check parsing late test plan
kunit: tool: Fix bug in parsing test plan
Kunit to check the longest symbol length
kunit: Clarify kunit_skip() argument name
kunit: tool: Build GDB scripts
kunit: qemu_configs: sparc: use Zilog console
kunit: tool: Use qboot on QEMU x86_64
Diffstat (limited to 'lib/tests/Makefile')
| -rw-r--r-- | lib/tests/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/tests/Makefile b/lib/tests/Makefile index a434c7cb733a..5a4794c1826e 100644 --- a/lib/tests/Makefile +++ b/lib/tests/Makefile @@ -27,6 +27,10 @@ obj-$(CONFIG_LIST_KUNIT_TEST) += list-test.o obj-$(CONFIG_KFIFO_KUNIT_TEST) += kfifo_kunit.o obj-$(CONFIG_TEST_LIST_SORT) += test_list_sort.o obj-$(CONFIG_LINEAR_RANGES_TEST) += test_linear_ranges.o + +CFLAGS_longest_symbol_kunit.o += $(call cc-disable-warning, missing-prototypes) +obj-$(CONFIG_LONGEST_SYM_KUNIT_TEST) += longest_symbol_kunit.o + obj-$(CONFIG_MEMCPY_KUNIT_TEST) += memcpy_kunit.o CFLAGS_overflow_kunit.o = $(call cc-disable-warning, tautological-constant-out-of-range-compare) obj-$(CONFIG_OVERFLOW_KUNIT_TEST) += overflow_kunit.o |
