summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbluhm <bluhm@openbsd.org>2019-01-29 21:08:12 +0000
committerbluhm <bluhm@openbsd.org>2019-01-29 21:08:12 +0000
commit906b732f9d92f0a10a39c53be9829ec9d8837770 (patch)
treee109157ddb8b39941f22a1a4262a41c82ed2a01f
parentTests to verify that the special case for Friday is not applied when (diff)
downloadwireguard-openbsd-906b732f9d92f0a10a39c53be9829ec9d8837770.tar.xz
wireguard-openbsd-906b732f9d92f0a10a39c53be9829ec9d8837770.zip
Skip vmd(8) tests on non amd64 machines.
-rw-r--r--regress/usr.sbin/vmd/Makefile12
1 files changed, 11 insertions, 1 deletions
diff --git a/regress/usr.sbin/vmd/Makefile b/regress/usr.sbin/vmd/Makefile
index fbd04d7e483..9e605b6ba87 100644
--- a/regress/usr.sbin/vmd/Makefile
+++ b/regress/usr.sbin/vmd/Makefile
@@ -1,5 +1,15 @@
-# $OpenBSD: Makefile,v 1.1.1.1 2017/10/11 12:01:20 bluhm Exp $
+# $OpenBSD: Makefile,v 1.2 2019/01/29 21:08:12 bluhm Exp $
+.if ${MACHINE} == "amd64"
+SUBDIR =
SUBDIR += config
+.elif make(regress) || make(all)
+${.TARGETS}:
+ # vmd(8) exists only on amd64, but not on ${MACHINE}
+ @echo SKIPPED
+.endif
+
+install:
+
.include <bsd.subdir.mk>