mirror of
https://github.com/opnsense/src.git
synced 2026-02-16 00:58:21 -05:00
tests. (Buy 10, get one free!) The separate categories were already there; they just weren't labeled. - Use fesetround() instead of fpsetround(), since the former is standard and implemented on all supported architectures. Add tests for each rounding mode. - Add additional tests for subnormals. Some of these tests won't pass until problems in vendor sources (gdtoa and gcc) are fixed and new versions imported, but I want to get these changes into the tree before I accidentally blow them away.
12 lines
190 B
Makefile
12 lines
190 B
Makefile
# $FreeBSD$
|
|
|
|
TESTS= test-perror test-printfloat test-scanfloat
|
|
CFLAGS+= -lm
|
|
|
|
.PHONY: tests
|
|
tests: ${TESTS}
|
|
for p in ${TESTS}; do ${.OBJDIR}/$$p; done
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
-rm -f ${TESTS}
|