summaryrefslogtreecommitdiff
path: root/tests/commonlib/Makefile.inc
diff options
context:
space:
mode:
authorVinod Polimera <quic_vpolimer@quicinc.com>2022-07-20 17:25:44 +0530
committerShelley Chen <shchen@google.com>2022-08-03 03:26:13 +0000
commit75283119296e5d6ce3a1c6d857a92a43ff0afec0 (patch)
tree37fa1a7d7d853859e3c2e0a412a580912d90c33f /tests/commonlib/Makefile.inc
parent65377eba7fa0c7d46e5e88a92f667ae40ea08ef2 (diff)
commonlib: Add support for rational number approximation
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>
Diffstat (limited to 'tests/commonlib/Makefile.inc')
-rw-r--r--tests/commonlib/Makefile.inc4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/commonlib/Makefile.inc b/tests/commonlib/Makefile.inc
index 054e7db16d..6df1db8fc5 100644
--- a/tests/commonlib/Makefile.inc
+++ b/tests/commonlib/Makefile.inc
@@ -2,7 +2,11 @@
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