opnsense-src/tools/regression/lib/libc/stdio/Makefile
David Schultz 600276e186 Regression tests for printf()'s floating point formats.
Tests for correct printing of subnormals are lacking.
2003-04-05 22:13:01 +00:00

11 lines
162 B
Makefile

# $FreeBSD$
TESTS= test-perror test-printfloat
.PHONY: tests
tests: ${TESTS}
for p in ${TESTS}; do ${.OBJDIR}/$$p; done
.PHONY: clean
clean:
-rm -f ${TESTS}