diff options
author | 2013-08-01 21:26:30 +0000 | |
---|---|---|
committer | 2013-08-01 21:26:30 +0000 | |
commit | 4a08560fec3d048dc92bd89a9bed5ecee2df248e (patch) | |
tree | 76b41274bb64d3424baa25460fedc939fa0f7b6c /regress/lib/libc | |
parent | Don't error out if there are no regression for a particular architecture in (diff) | |
download | wireguard-openbsd-4a08560fec3d048dc92bd89a9bed5ecee2df248e.tar.xz wireguard-openbsd-4a08560fec3d048dc92bd89a9bed5ecee2df248e.zip |
Some tests are currently failing. Only run those if the REGRESS_FULL
variable is set.
Diffstat (limited to 'regress/lib/libc')
-rw-r--r-- | regress/lib/libc/Makefile | 8 | ||||
-rw-r--r-- | regress/lib/libc/locale/Makefile | 4 |
2 files changed, 9 insertions, 3 deletions
diff --git a/regress/lib/libc/Makefile b/regress/lib/libc/Makefile index 0883af1ab3e..016255e9dc3 100644 --- a/regress/lib/libc/Makefile +++ b/regress/lib/libc/Makefile @@ -1,13 +1,17 @@ -# $OpenBSD: Makefile,v 1.36 2013/05/02 09:20:17 mpi Exp $ +# $OpenBSD: Makefile,v 1.37 2013/08/01 21:26:30 kettenis Exp $ SUBDIR+= _setjmp alloca atexit basename cephes cxa-atexit db dirname env -SUBDIR+= fmemopen fnmatch fpclassify getaddrinfo getcap getopt_long glob +SUBDIR+= fmemopen fnmatch fpclassify getcap getopt_long glob SUBDIR+= hsearch longjmp locale malloc mkstemp netdb open_memstream SUBDIR+= orientation popen printf SUBDIR+= regex setjmp setjmp-signal sigreturn sigsetjmp sprintf SUBDIR+= stdio_threading stpncpy strerror strtod strtol strtonum SUBDIR+= telldir time vis +.if defined(REGRESS_FULL) +SUBDIR+= getaddrinfo +.endif + .if (${MACHINE_ARCH} != "vax") SUBDIR+= ieeefp .endif diff --git a/regress/lib/libc/locale/Makefile b/regress/lib/libc/locale/Makefile index c182172ba2f..d6df7bf70d4 100644 --- a/regress/lib/libc/locale/Makefile +++ b/regress/lib/libc/locale/Makefile @@ -1,6 +1,8 @@ -# $OpenBSD: Makefile,v 1.1 2005/08/11 21:57:02 espie Exp $ +# $OpenBSD: Makefile,v 1.2 2013/08/01 21:26:30 kettenis Exp $ +.if defined(REGRESS_FULL) SUBDIR+= check_isw +.endif install: |