summaryrefslogtreecommitdiff
path: root/regress
diff options
context:
space:
mode:
authorJasper Lievisse Adriaanse <jasper@cvs.openbsd.org>2012-12-16 18:28:54 +0000
committerJasper Lievisse Adriaanse <jasper@cvs.openbsd.org>2012-12-16 18:28:54 +0000
commit216cb325f2515b374dde5754f1086ec2e4c26580 (patch)
tree58d8febd96977475ce6acf0198e9feb426fbe559 /regress
parent96ff8508e7b13040e7ee28a8769e50b5fab0f7b2 (diff)
- use diff -u like most anywhere to make the output readable.
ok phessler@
Diffstat (limited to 'regress')
-rw-r--r--regress/lib/libc/time/strptime/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/lib/libc/time/strptime/Makefile b/regress/lib/libc/time/strptime/Makefile
index f2c9ebaf2c9..1e1565ced49 100644
--- a/regress/lib/libc/time/strptime/Makefile
+++ b/regress/lib/libc/time/strptime/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.2 2004/01/21 18:13:48 david Exp $
+# $OpenBSD: Makefile,v 1.3 2012/12/16 18:28:53 jasper Exp $
PROG= strptime_test
SRCS= main.c
@@ -7,6 +7,6 @@ CLEANFILES+= got
REGRESS_TARGETS=do-reg
do-reg: ${PROG}
./${PROG} < ${.CURDIR}/tests > got
- diff ${.CURDIR}/expected got
+ diff -u ${.CURDIR}/expected got
.include <bsd.regress.mk>