diff options
author | jilles <jilles@FreeBSD.org> | 2014-04-21 12:39:35 +0000 |
---|---|---|
committer | jilles <jilles@FreeBSD.org> | 2014-04-21 12:39:35 +0000 |
commit | c446600420577f343e0065dc97a84be9b00e2703 (patch) | |
tree | 9c63d29e124404f7b7c7133cd0c048fad0d0b082 /tools/regression/lib/libc | |
parent | d3cdd1efb1a4f56354058154e5ccb91b1b736e47 (diff) | |
download | FreeBSD-src-c446600420577f343e0065dc97a84be9b00e2703.zip FreeBSD-src-c446600420577f343e0065dc97a84be9b00e2703.tar.gz |
libc: Add fopen() test to regression Makefile.
Diffstat (limited to 'tools/regression/lib/libc')
-rw-r--r-- | tools/regression/lib/libc/stdio/Makefile | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/tools/regression/lib/libc/stdio/Makefile b/tools/regression/lib/libc/stdio/Makefile index 4b252b9..f269027 100644 --- a/tools/regression/lib/libc/stdio/Makefile +++ b/tools/regression/lib/libc/stdio/Makefile @@ -1,8 +1,16 @@ # $FreeBSD$ -TESTS= test-fmemopen test-getdelim test-mkostemp test-open_memstream \ - test-open_wmemstream test-perror test-print-positional test-printbasic \ - test-printfloat test-scanfloat +TESTS= test-fmemopen \ + test-fopen \ + test-getdelim \ + test-mkostemp \ + test-open_memstream \ + test-open_wmemstream \ + test-perror \ + test-print-positional \ + test-printbasic \ + test-printfloat \ + test-scanfloat CFLAGS+= -lm .PHONY: tests |