diff options
author | kettenis <> | 2013-08-01 21:26:30 +0000 |
---|---|---|
committer | kettenis <> | 2013-08-01 21:26:30 +0000 |
commit | 0e1a9a695c59a10068fc9de556aabad5777c0f63 (patch) | |
tree | 94fb85d9a81c566e083e427410bc16c1f1ce3e8f | |
parent | c19a4d8e475e9d51a75453e36ddf7463735e75e6 (diff) | |
download | openbsd-0e1a9a695c59a10068fc9de556aabad5777c0f63.tar.gz openbsd-0e1a9a695c59a10068fc9de556aabad5777c0f63.tar.bz2 openbsd-0e1a9a695c59a10068fc9de556aabad5777c0f63.zip |
Some tests are currently failing. Only run those if the REGRESS_FULL
variable is set.
-rw-r--r-- | src/regress/lib/libc/Makefile | 8 | ||||
-rw-r--r-- | src/regress/lib/libc/locale/Makefile | 4 |
2 files changed, 9 insertions, 3 deletions
diff --git a/src/regress/lib/libc/Makefile b/src/regress/lib/libc/Makefile index 0883af1ab3..016255e9dc 100644 --- a/src/regress/lib/libc/Makefile +++ b/src/regress/lib/libc/Makefile | |||
@@ -1,13 +1,17 @@ | |||
1 | # $OpenBSD: Makefile,v 1.36 2013/05/02 09:20:17 mpi Exp $ | 1 | # $OpenBSD: Makefile,v 1.37 2013/08/01 21:26:30 kettenis Exp $ |
2 | 2 | ||
3 | SUBDIR+= _setjmp alloca atexit basename cephes cxa-atexit db dirname env | 3 | SUBDIR+= _setjmp alloca atexit basename cephes cxa-atexit db dirname env |
4 | SUBDIR+= fmemopen fnmatch fpclassify getaddrinfo getcap getopt_long glob | 4 | SUBDIR+= fmemopen fnmatch fpclassify getcap getopt_long glob |
5 | SUBDIR+= hsearch longjmp locale malloc mkstemp netdb open_memstream | 5 | SUBDIR+= hsearch longjmp locale malloc mkstemp netdb open_memstream |
6 | SUBDIR+= orientation popen printf | 6 | SUBDIR+= orientation popen printf |
7 | SUBDIR+= regex setjmp setjmp-signal sigreturn sigsetjmp sprintf | 7 | SUBDIR+= regex setjmp setjmp-signal sigreturn sigsetjmp sprintf |
8 | SUBDIR+= stdio_threading stpncpy strerror strtod strtol strtonum | 8 | SUBDIR+= stdio_threading stpncpy strerror strtod strtol strtonum |
9 | SUBDIR+= telldir time vis | 9 | SUBDIR+= telldir time vis |
10 | 10 | ||
11 | .if defined(REGRESS_FULL) | ||
12 | SUBDIR+= getaddrinfo | ||
13 | .endif | ||
14 | |||
11 | .if (${MACHINE_ARCH} != "vax") | 15 | .if (${MACHINE_ARCH} != "vax") |
12 | SUBDIR+= ieeefp | 16 | SUBDIR+= ieeefp |
13 | .endif | 17 | .endif |
diff --git a/src/regress/lib/libc/locale/Makefile b/src/regress/lib/libc/locale/Makefile index c182172ba2..d6df7bf70d 100644 --- a/src/regress/lib/libc/locale/Makefile +++ b/src/regress/lib/libc/locale/Makefile | |||
@@ -1,6 +1,8 @@ | |||
1 | # $OpenBSD: Makefile,v 1.1 2005/08/11 21:57:02 espie Exp $ | 1 | # $OpenBSD: Makefile,v 1.2 2013/08/01 21:26:30 kettenis Exp $ |
2 | 2 | ||
3 | .if defined(REGRESS_FULL) | ||
3 | SUBDIR+= check_isw | 4 | SUBDIR+= check_isw |
5 | .endif | ||
4 | 6 | ||
5 | install: | 7 | install: |
6 | 8 | ||