summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2020-07-20 17:42:33 +0000
committerderaadt <deraadt@openbsd.org>2020-07-20 17:42:33 +0000
commitf419d3b31ed9c2bb86536a69cc97639dad96ef7f (patch)
tree9190eed1c8066ac60aca69843624b6d4af550f11
parenttest _exit(2) rather than exit(3) [to keep things simpler], and (diff)
downloadwireguard-openbsd-f419d3b31ed9c2bb86536a69cc97639dad96ef7f.tar.xz
wireguard-openbsd-f419d3b31ed9c2bb86536a69cc97639dad96ef7f.zip
Improve MACHINE/MACHINE_ARCH access to actually testing architectures
-rw-r--r--regress/sys/kern/stackpivot/Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/regress/sys/kern/stackpivot/Makefile b/regress/sys/kern/stackpivot/Makefile
index 0aa38ce558a..a9f963de3a0 100644
--- a/regress/sys/kern/stackpivot/Makefile
+++ b/regress/sys/kern/stackpivot/Makefile
@@ -2,10 +2,13 @@
.if ${MACHINE} != "arm64" && \
${MACHINE} != "amd64" && \
${MACHINE} != "i386" && \
- ${MACHINE} != "octeon"
+ ${MACHINE} != "powerpc64" && \
+ ${MACHINE_ARCH} != "powerpc" && \
+ ${MACHINE_ARCH} != "mips64" && \
+ ${MACHINE_ARCH} != "mips64el"
REGRESS_TARGETS=run-regress-skiparch
run-regress-skiparch:
- # Need stack pivot asm for this arch
+ # Need stack pivot asm for MACHINE ${MACHINE} / MACHINE_ARCH ${MACHINE_ARCH}
@echo SKIPPED
.include <bsd.regress.mk>
.else