diff options
author | 2006-09-19 22:35:13 +0000 | |
---|---|---|
committer | 2006-09-19 22:35:13 +0000 | |
commit | 3a70b932615083e0b93b189ea8631727b38fcd24 (patch) | |
tree | d7211ec5f052b645901cffc82b606fd739b2c006 | |
parent | Enable pgt(4) on amd64. Missing entry spotted by brad@. (diff) | |
download | wireguard-openbsd-3a70b932615083e0b93b189ea8631727b38fcd24.tar.xz wireguard-openbsd-3a70b932615083e0b93b189ea8631727b38fcd24.zip |
- 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/Makefile | 4 |
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 |