summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordaniel <>2014-12-10 03:12:38 +0000
committerdaniel <>2014-12-10 03:12:38 +0000
commitfeae066ba1387ccf9152df4fc5ba528a12a01e15 (patch)
tree74ed6053355ae70a49a39a8742cce058b4172794
parent760780ff2febbe89bdf24a72d3d96de9016fa52b (diff)
downloadopenbsd-feae066ba1387ccf9152df4fc5ba528a12a01e15.tar.gz
openbsd-feae066ba1387ccf9152df4fc5ba528a12a01e15.tar.bz2
openbsd-feae066ba1387ccf9152df4fc5ba528a12a01e15.zip
fix previous.
-rw-r--r--src/regress/lib/libc/regex/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/regress/lib/libc/regex/Makefile b/src/regress/lib/libc/regex/Makefile
index 656a609ff7..a69432f682 100644
--- a/src/regress/lib/libc/regex/Makefile
+++ b/src/regress/lib/libc/regex/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.9 2014/12/09 00:49:21 deraadt Exp $ 1# $OpenBSD: Makefile,v 1.10 2014/12/10 03:12:38 daniel Exp $
2# $NetBSD: Makefile,v 1.2 1995/02/16 19:38:45 cgd Exp $ 2# $NetBSD: Makefile,v 1.2 1995/02/16 19:38:45 cgd Exp $
3 3
4PROG= re 4PROG= re
@@ -10,7 +10,9 @@ CFLAGS+= -I${.CURDIR}/../../../../lib/libc/regex -DREDEBUG -DPOSIX_MISTAKE
10 10
11TESTS= ${.CURDIR}/tests 11TESTS= ${.CURDIR}/tests
12 12
13REGRESS_TARGETS=do-reg do-reg-long do-reg-backref do-t_exhaust 13REGRESS_TARGETS = do-reg do-reg-long do-reg-backref
14# cannot run with large limits
15#REGRESS_TARGETS += do-t_exhaust
14 16
15do-reg: ${PROG} 17do-reg: ${PROG}
16 ./re < ${TESTS} 18 ./re < ${TESTS}