From: Alex Bennée Date: Thu, 11 Feb 2021 12:27:50 +0000 (+0000) Subject: tests/tcg: fix silent skipping of softmmu gdb tests X-Git-Tag: v6.0.0-rc0~88^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8886ff2844dc1a62dc4722ac65daf57c27dda2ee;p=thirdparty%2Fqemu.git tests/tcg: fix silent skipping of softmmu gdb tests Signed-off-by: Alex Bennée Message-Id: <20210211122750.22645-16-alex.bennee@linaro.org> --- diff --git a/tests/tcg/multiarch/system/Makefile.softmmu-target b/tests/tcg/multiarch/system/Makefile.softmmu-target index 4657f6e4cf0..625ed792c6d 100644 --- a/tests/tcg/multiarch/system/Makefile.softmmu-target +++ b/tests/tcg/multiarch/system/Makefile.softmmu-target @@ -27,5 +27,9 @@ run-gdbstub-memory: memory --bin $< --test $(MULTIARCH_SRC)/gdbstub/memory.py, \ "softmmu gdbstub support") -MULTIARCH_RUNS += run-gdbstub-memory +else +run-gdbstub-%: + $(call skip-test, "gdbstub test $*", "need working gdb") endif + +MULTIARCH_RUNS += run-gdbstub-memory