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
This commit is contained in:
Ed Maste 2022-02-08 20:18:04 -05:00
parent ff5025d104
commit d940e94121

View file

@ -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