summaryrefslogtreecommitdiff
path: root/regress/sys
diff options
context:
space:
mode:
authorOtto Moerbeek <otto@cvs.openbsd.org>2005-02-25 09:06:29 +0000
committerOtto Moerbeek <otto@cvs.openbsd.org>2005-02-25 09:06:29 +0000
commitd9a33cf76e26570487b13d4dfc10418183b1ea77 (patch)
tree2d43b33ba11eec3960e173ca8ec8890ac04c901e /regress/sys
parent8e555d953d4a7e8702ccb2d29b39ad91d179ce95 (diff)
This test is only valid on archs that have shared kernel and user address
space, as mickey@ pointed out. Enable only for i386 and amd64, since it might give false negatives on other archs.
Diffstat (limited to 'regress/sys')
-rw-r--r--regress/sys/copy/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/regress/sys/copy/Makefile b/regress/sys/copy/Makefile
index ce6e2f8f172..b74a4e76111 100644
--- a/regress/sys/copy/Makefile
+++ b/regress/sys/copy/Makefile
@@ -1,6 +1,10 @@
-# $OpenBSD: Makefile,v 1.1 2005/02/24 06:58:36 otto Exp $
+# $OpenBSD: Makefile,v 1.2 2005/02/25 09:06:28 otto Exp $
PROG=copy
CFLAGS+= -Wall
+.if !(${MACHINE} == "i386" || ${MACHINE} == "amd64")
+REGRESS_SKIP=
+.endif
+
.include <bsd.regress.mk>