summaryrefslogtreecommitdiff
path: root/regress/usr.sbin/vmd
diff options
context:
space:
mode:
authorAlexander Bluhm <bluhm@cvs.openbsd.org>2019-01-29 21:08:13 +0000
committerAlexander Bluhm <bluhm@cvs.openbsd.org>2019-01-29 21:08:13 +0000
commit857abda60a6d6c12558c835b09151895f044ddc8 (patch)
treea655a220f48f8b4f11f43b12eacb073d87f4701b /regress/usr.sbin/vmd
parent77421e55c092a83c5c8d40f66595ecb5b87a4867 (diff)
Skip vmd(8) tests on non amd64 machines.
Diffstat (limited to 'regress/usr.sbin/vmd')
-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 af34c33fcf6..9e605b6ba87 100644
--- a/regress/usr.sbin/vmd/Makefile
+++ b/regress/usr.sbin/vmd/Makefile
@@ -1,5 +1,15 @@
-# $OpenBSD: Makefile,v 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>