diff options
author | 2012-07-07 18:27:18 +0000 | |
---|---|---|
committer | 2012-07-07 18:27:18 +0000 | |
commit | f95522fd16e69ca73a3c96b2ae7b3517ffde3a57 (patch) | |
tree | e6ca9386e4e5394ddd53c1a4dfb36d4bd505639e | |
parent | streamlined code (diff) | |
download | wireguard-openbsd-f95522fd16e69ca73a3c96b2ae7b3517ffde3a57.tar.xz wireguard-openbsd-f95522fd16e69ca73a3c96b2ae7b3517ffde3a57.zip |
reorder stuff so that known failing targets are last
-rw-r--r-- | regress/usr.bin/libtool/Makefile | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/regress/usr.bin/libtool/Makefile b/regress/usr.bin/libtool/Makefile index 6461c6d515a..f6293f1c2eb 100644 --- a/regress/usr.bin/libtool/Makefile +++ b/regress/usr.bin/libtool/Makefile @@ -1,19 +1,21 @@ -# $OpenBSD: Makefile,v 1.14 2012/07/06 19:16:52 espie Exp $ +# $OpenBSD: Makefile,v 1.15 2012/07/07 18:27:18 espie Exp $ REGRESS_TARGETS = test-compile-0 test-link-0 test-install-0 \ test-run-0 test-link-1 test-install-1 test-run-1 \ test-link-2 test-link-3 test-run-2 test-run-3 \ - error-0 error-1 error-2 error-3 error-4 test-alternate-0 \ - test-implicit-0 test-run-4 \ - test-implicit-1 + error-1 error-2 error-3 test-alternate-0 \ + test-implicit-0 test-run-4 test-implicit-1 +FAILING_TARGETS += error-0 error-4 .include <bsd.own.mk> .if defined(NOPIC) -REGRESS_TARGETS += static-arch-fail +FAILING_TARGETS += static-arch-fail .else -REGRESS_TARGETS += test-all-static error-5 \ - version-override-0 version-override-1 +REGRESS_TARGETS += version-override-0 version-override-1 +FAILING_TARGETS += test-all-static error-5 .endif +REGRESS_TARGETS += ${FAILING_TARGETS} + LIBTOOL ?= /usr/bin/libtool DEST = ${.OBJDIR}/dest/usr/local |