diff options
author | 2005-04-28 11:21:18 +0000 | |
---|---|---|
committer | 2005-04-28 11:21:18 +0000 | |
commit | 6bb656b99d128ebf764d2c39ba53d1c719575ff2 (patch) | |
tree | 8dbaf7984db15e44df4f2eef611ed0cb0eb6aaaf | |
parent | -Wall clean now (diff) | |
download | wireguard-openbsd-6bb656b99d128ebf764d2c39ba53d1c719575ff2.tar.xz wireguard-openbsd-6bb656b99d128ebf764d2c39ba53d1c719575ff2.zip |
Run this test on all shared address space machines. With help from
miod and mickey; ok art@
-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 |