diff options
author | 2017-01-25 22:58:57 +0000 | |
---|---|---|
committer | 2017-01-25 22:58:57 +0000 | |
commit | a8be7c6e6d709905cae627560f978df339371cb1 (patch) | |
tree | 1c6e506d6c2cf322067f3fc89a2e77ad1d934576 | |
parent | Introduce a hack to remove false-positives when looking for memory (diff) | |
download | wireguard-openbsd-a8be7c6e6d709905cae627560f978df339371cb1.tar.xz wireguard-openbsd-a8be7c6e6d709905cae627560f978df339371cb1.zip |
Do not try to execute this test on !m88k archs.
Logic taken from the sparc64 regress, to avoid false negative on bluhm@'s
regression test infrastructure.
-rw-r--r-- | regress/sys/arch/m88k/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/regress/sys/arch/m88k/Makefile b/regress/sys/arch/m88k/Makefile index 6b4a5d27787..fe3f2d1cdf6 100644 --- a/regress/sys/arch/m88k/Makefile +++ b/regress/sys/arch/m88k/Makefile @@ -1,6 +1,8 @@ -# $OpenBSD: Makefile,v 1.1 2004/04/26 12:42:55 miod Exp $ +# $OpenBSD: Makefile,v 1.2 2017/01/25 22:58:57 mpi Exp $ +.if ${MACHINE_ARCH} == "m88k" SUBDIR+= usertrap +.endif install: |