commit | d0ce6257c660d202aff160eedbc359e1e8653a30 | [log] [tgz] |
---|---|---|
author | Alex Bennée <alex.bennee@linaro.org> | Wed Feb 27 15:42:18 2019 +0000 |
committer | Alex Bennée <alex.bennee@linaro.org> | Tue Mar 12 17:05:21 2019 +0000 |
tree | 0c1e5f07f3ccff6968dd3ec39b590375e2873d92 | |
parent | fdfda70e282a6983b6f46e942162e14621ca268f [diff] |
tests/tcg: add gdb runner variant With this you can launch a test in gdb with: cd $(BUILD)/tests make -f $(SRC)/tests/tcg/Makefile gdb-$(TEST_NAME) Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
diff --git a/tests/tcg/Makefile b/tests/tcg/Makefile index d26a36d..8dfd1a7 100644 --- a/tests/tcg/Makefile +++ b/tests/tcg/Makefile
@@ -128,6 +128,9 @@ "$< on $(TARGET_NAME)") endif +gdb-%: % + gdb --args $(QEMU) $(QEMU_OPTS) $< + .PHONY: run run: $(RUN_TESTS)