aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2022-02-09 01:18:04 +0000
committerEd Maste <emaste@FreeBSD.org>2022-02-09 03:19:59 +0000
commitd940e9412148a06f28338d39ace0a38de16a8228 (patch)
treec67be140a2c95dcb2547d646c850cce20222cc43
parentff5025d104507ccdb90758e45580d23e54064376 (diff)
downloadsrc-d940e9412148a06f28338d39ace0a38de16a8228.tar.gz
src-d940e9412148a06f28338d39ace0a38de16a8228.zip
bmake: make opt-debug-x-trace broken on Linux
It fails during GitHub cross-build actions from Ubuntu 20.04. sjg investigated and found it is a dash bug; a more extensive change to handle this case will come in the next bmake update. Reviewed by: sjg Differential Revision: https://reviews.freebsd.org/D34219
-rw-r--r--contrib/bmake/unit-tests/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/contrib/bmake/unit-tests/Makefile b/contrib/bmake/unit-tests/Makefile
index 2a300133eccc..537525d879b2 100644
--- a/contrib/bmake/unit-tests/Makefile
+++ b/contrib/bmake/unit-tests/Makefile
@@ -441,6 +441,9 @@ TESTS+= varquote
.if ${.SHELL:T} == "ksh"
BROKEN_TESTS+= sh-flags
.endif
+.if ${.MAKE.OS} == "Linux"
+BROKEN_TESTS+= opt-debug-x-trace
+.endif
.if ${.MAKE.OS:NDarwin} == ""
BROKEN_TESTS+= shell-ksh
.endif