mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-04 20:19:47 +08:00

Adds test suite for integer based square root function. The test suite is designed to verify the correctness of the int_sqrt() math library function. Link: https://lkml.kernel.org/r/20241213042701.1037467-1-luis.hernandez093@gmail.com Signed-off-by: Luis Felipe Hernandez <luis.hernandez093@gmail.com> Reviewed-by: Kuan-Wei Chiu <visitorckw@gmail.com> Cc: David Gow <davidgow@google.com> Cc: Ricardo B. Marliere <rbm@suse.com> Cc: Shuah Khan <skhan@linuxfoundation.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
12 lines
502 B
Makefile
12 lines
502 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
obj-y += div64.o gcd.o lcm.o int_log.o int_pow.o int_sqrt.o reciprocal_div.o
|
|
|
|
obj-$(CONFIG_CORDIC) += cordic.o
|
|
obj-$(CONFIG_PRIME_NUMBERS) += prime_numbers.o
|
|
obj-$(CONFIG_RATIONAL) += rational.o
|
|
|
|
obj-$(CONFIG_INT_POW_TEST) += tests/int_pow_kunit.o
|
|
obj-$(CONFIG_TEST_DIV64) += test_div64.o
|
|
obj-$(CONFIG_TEST_MULDIV64) += test_mul_u64_u64_div_u64.o
|
|
obj-$(CONFIG_RATIONAL_KUNIT_TEST) += rational-test.o
|
|
obj-$(CONFIG_INT_SQRT_KUNIT_TEST) += tests/int_sqrt_kunit.o
|