opnsense-src/tools/regression/lib/libc/stdio/Makefile
David Schultz b03825c532 Add some regression tests for printf() with positional arguments.
The first test comes from OpenBSD, and the others are additions or
adaptations.

This is based on OpenBSD's
src/regress/lib/libc/sprintf/sprintf_test.c, v1.3.
I deliberately did not use v1.4 because it's bogus.
2008-06-29 21:03:14 +00:00

12 lines
212 B
Makefile

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