summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiall O'Higgins <niallo@cvs.openbsd.org>2006-09-19 22:35:14 +0000
committerNiall O'Higgins <niallo@cvs.openbsd.org>2006-09-19 22:35:14 +0000
commitfa476752cd4ca0b43aa323571bb1df5c025edbbe (patch)
treed168bdc30b2af4a5893c3b176a104536810af008
parent7663a18dc553e1f74bbcfcf4b819f4d98597f3e5 (diff)
- bump ulimit -d value for EOF test case so that it works on amd64 and sparc64 (thanks to pedro@ for
testing on his sparc64). - use ${.CURDIR} to make this work properly with an obj/ dir.
-rw-r--r--regress/usr.bin/rcs/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/usr.bin/rcs/Makefile b/regress/usr.bin/rcs/Makefile
index 8137912d7ed..89ec7d33972 100644
--- a/regress/usr.bin/rcs/Makefile
+++ b/regress/usr.bin/rcs/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.37 2006/08/29 21:28:45 david Exp $
+# $OpenBSD: Makefile,v 1.38 2006/09/19 22:35:13 niallo Exp $
# Regression tests by Niall O'Higgins <niallo@openbsd.org>.
# ksh -> Makefile by Ray Lai <ray@cyth.net>.
@@ -591,7 +591,7 @@ test-ci-parse-keywords2: clean
# Check for correct EOF handling in rcs parser
test-co-parse-truncated: clean
- @sh -c 'ulimit -d 1000 && ${CO} -q test-truncated > truncated.out 2>&1' || \
+ @sh -c 'ulimit -d 5000 && ${CO} -q ${.CURDIR}/test-truncated > truncated.out 2>&1' || \
case "$$?" in 1) exit 0;; esac && exit 1
@grep -q 'co: problem parsing deltatexts' truncated.out