diff options
author | tjr <tjr@FreeBSD.org> | 2002-12-19 09:46:10 +0000 |
---|---|---|
committer | tjr <tjr@FreeBSD.org> | 2002-12-19 09:46:10 +0000 |
commit | a585a3e1d1a16e8dd6bfbe1b7a95b77940fcc20d (patch) | |
tree | f0e9e220abcdaf285cb63c499771e93a8a4ac1ac /tools/regression/lib/libc/stdio/Makefile | |
parent | 51fe7c1a888747c57136cc34ec54a93a0487b745 (diff) | |
download | FreeBSD-src-a585a3e1d1a16e8dd6bfbe1b7a95b77940fcc20d.zip FreeBSD-src-a585a3e1d1a16e8dd6bfbe1b7a95b77940fcc20d.tar.gz |
Add a test program for perror() that demonstrates two bugs in the
current implementation.
Diffstat (limited to 'tools/regression/lib/libc/stdio/Makefile')
-rw-r--r-- | tools/regression/lib/libc/stdio/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/regression/lib/libc/stdio/Makefile b/tools/regression/lib/libc/stdio/Makefile new file mode 100644 index 0000000..33d283e --- /dev/null +++ b/tools/regression/lib/libc/stdio/Makefile @@ -0,0 +1,11 @@ +# $FreeBSD$ + +TESTS= test-perror + +.PHONY: tests +tests: ${TESTS} + for p in ${TESTS}; do ${.OBJDIR}/$$p; done + +.PHONY: clean +clean: + -rm -f ${TESTS} |