diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2005-04-28 11:21:19 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2005-04-28 11:21:19 +0000 |
commit | 1e306917f833fec01ba6a48ed5d236ad1dc64841 (patch) | |
tree | b1fd6e0806ae342628ada736ad5b950801ccd491 /regress/sys | |
parent | 7c305b2743b3a8da12e7dbba2cfd8d93ac4f9fd7 (diff) |
Run this test on all shared address space machines. With help from
miod and mickey; ok art@
Diffstat (limited to 'regress/sys')
-rw-r--r-- | regress/sys/copy/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/regress/sys/copy/Makefile b/regress/sys/copy/Makefile index b74a4e76111..c5fab354db5 100644 --- a/regress/sys/copy/Makefile +++ b/regress/sys/copy/Makefile @@ -1,9 +1,14 @@ -# $OpenBSD: Makefile,v 1.2 2005/02/25 09:06:28 otto Exp $ +# $OpenBSD: Makefile,v 1.3 2005/04/28 11:21:18 otto Exp $ PROG=copy CFLAGS+= -Wall -.if !(${MACHINE} == "i386" || ${MACHINE} == "amd64") +# Distinct address space: hppa hppa64 m68k m88k powerpc sparc64 +# Shared address space: alpha amd64 arm i386 mips solbourne sparc vax + +.if (${MACHINE_ARCH} == "hppa" || ${MACHINE_ARCH} == "hppa64" || \ + ${MACHINE_ARCH} == "m68k" || ${MACHINE_ARCH} == "m88k" || \ + ${MACHINE_ARCH} == "powerpc" || ${MACHINE_ARCH} == "sparc64") REGRESS_SKIP= .endif |