7528311929
This patch adds a function to calculate best rational approximation for a given fraction and unit tests for it. Change-Id: I2272d9bb31cde54e65721f95662b80754eee50c2 Signed-off-by: Vinod Polimera <quic_vpolimer@quicinc.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/66010 Reviewed-by: Yu-Ping Wu <yupingso@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
12 lines
303 B
Makefile
12 lines
303 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
subdirs-y += bsd
|
|
|
|
tests-y += rational-test
|
|
tests-y += region-test
|
|
|
|
rational-test-srcs += tests/commonlib/rational-test.c
|
|
rational-test-srcs += src/commonlib/rational.c
|
|
|
|
region-test-srcs += tests/commonlib/region-test.c
|
|
region-test-srcs += src/commonlib/region.c
|