]> www.infradead.org Git - users/dwmw2/qemu.git/commitdiff
configure, tests/tcg: simplify GDB conditionals
authorPaolo Bonzini <pbonzini@redhat.com>
Thu, 28 Sep 2023 08:44:56 +0000 (10:44 +0200)
committerPaolo Bonzini <pbonzini@redhat.com>
Wed, 18 Oct 2023 08:01:01 +0000 (10:01 +0200)
Unify HAVE_GDB_BIN (currently in config-host.mak) and
HOST_GDB_SUPPORTS_ARCH into a single GDB variable in
config-target.mak.

Reviewed-by: Emmanouil Pitsidianakis <manos.pitsidianakis@linaro.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
configure
meson.build
tests/tcg/aarch64/Makefile.target
tests/tcg/multiarch/Makefile.target
tests/tcg/multiarch/system/Makefile.softmmu-target
tests/tcg/s390x/Makefile.target

index 9f782054509ad72570f278ef42bce68b5dccdb98..ffcfabb8d36970f6b3608af6c250d416cdb1486b 100755 (executable)
--- a/configure
+++ b/configure
@@ -1140,6 +1140,18 @@ if test "$tcg" = "auto"; then
   fi
 fi
 
+#########################################
+# gdb test
+
+if test -n "$gdb_bin"; then
+    gdb_version=$($gdb_bin --version | head -n 1)
+    if version_ge ${gdb_version##* } 9.1; then
+        gdb_arches=$($python "$source_path/scripts/probe-gdb-support.py" $gdb_bin)
+    else
+        gdb_bin=""
+    fi
+fi
+
 ##########################################
 # big/little endian test
 cat > $TMPC << EOF
@@ -1660,17 +1672,7 @@ fi
 
 echo "SRC_PATH=$source_path" >> $config_host_mak
 echo "TARGET_DIRS=$target_list" >> $config_host_mak
-
-if test -n "$gdb_bin"; then
-    gdb_version=$($gdb_bin --version | head -n 1)
-    if version_ge ${gdb_version##* } 9.1; then
-        echo "HAVE_GDB_BIN=$gdb_bin" >> $config_host_mak
-        gdb_arches=$($python "$source_path/scripts/probe-gdb-support.py" $gdb_bin)
-    else
-        gdb_bin=""
-    fi
-fi
-
+echo "GDB=$gdb_bin" >> $config_host_mak
 if test "$container" != no; then
     echo "RUNC=$runc" >> $config_host_mak
 fi
@@ -1715,10 +1717,6 @@ mkdir -p tests/tcg
 echo "# Automatically generated by configure - do not modify" > $config_host_mak
 echo "SRC_PATH=$source_path" >> $config_host_mak
 
-# versioned checked in the main config_host.mak above
-if test -n "$gdb_bin"; then
-    echo "HAVE_GDB_BIN=$gdb_bin" >> $config_host_mak
-fi
 if test "$plugins" = "yes" ; then
     echo "CONFIG_PLUGIN=y" >> $config_host_mak
 fi
@@ -1755,7 +1753,7 @@ for target in $target_list; do
 
       # will GDB work with these binaries?
       if test "${gdb_arches#*$arch}" != "$gdb_arches"; then
-          echo "HOST_GDB_SUPPORTS_ARCH=y" >> "$config_target_mak"
+          echo "GDB=$gdb_bin" >> $config_target_mak
       fi
 
       echo "run-tcg-tests-$target: $qemu\$(EXESUF)" >> Makefile.prereqs
index 1be9f92f7da8df19da9159464c8bf05f19e6012b..2bda62a2b1bcf233dd191bb17c714d1f6d78277a 100644 (file)
@@ -4021,8 +4021,8 @@ summary(summary_info, bool_yn: true, section: 'Directories')
 summary_info = {}
 summary_info += {'python':            '@0@ (version: @1@)'.format(python.full_path(), python.language_version())}
 summary_info += {'sphinx-build':      sphinx_build}
-if config_host.has_key('HAVE_GDB_BIN')
-  summary_info += {'gdb':             config_host['HAVE_GDB_BIN']}
+if config_host.has_key('GDB')
+  summary_info += {'gdb':             config_host['GDB']}
 endif
 summary_info += {'iasl':              iasl}
 summary_info += {'genisoimage':       config_host['GENISOIMAGE']}
index d01b8ff47c82885e0246797970c3cd3da351d187..62b38c792fb157ef7a4e3ea86574a72e59302c27 100644 (file)
@@ -105,19 +105,19 @@ sha512-sve: sha512.c
 
 TESTS += sha512-sve
 
-ifeq ($(HOST_GDB_SUPPORTS_ARCH),y)
+ifneq ($(GDB),)
 GDB_SCRIPT=$(SRC_PATH)/tests/guest-debug/run-test.py
 
 run-gdbstub-sysregs: sysregs
        $(call run-test, $@, $(GDB_SCRIPT) \
-               --gdb $(HAVE_GDB_BIN) \
+               --gdb $(GDB) \
                --qemu $(QEMU) --qargs "$(QEMU_OPTS)" \
                --bin $< --test $(AARCH64_SRC)/gdbstub/test-sve.py, \
        basic gdbstub SVE support)
 
 run-gdbstub-sve-ioctls: sve-ioctls
        $(call run-test, $@, $(GDB_SCRIPT) \
-               --gdb $(HAVE_GDB_BIN) \
+               --gdb $(GDB) \
                --qemu $(QEMU) --qargs "$(QEMU_OPTS)" \
                --bin $< --test $(AARCH64_SRC)/gdbstub/test-sve-ioctl.py, \
        basic gdbstub SVE ZLEN support)
index 43bddeaf21245ea49f002ed282faee792a95c884..f3bfaf1a228ccea04a4ebdbc555fb81fd3d52fdc 100644 (file)
@@ -63,45 +63,39 @@ run-test-mmap: test-mmap
 run-test-mmap-%: test-mmap
        $(call run-test, test-mmap-$*, $(QEMU) -p $* $<, $< ($* byte pages))
 
-ifneq ($(HAVE_GDB_BIN),)
-ifeq ($(HOST_GDB_SUPPORTS_ARCH),y)
+ifneq ($(GDB),)
 GDB_SCRIPT=$(SRC_PATH)/tests/guest-debug/run-test.py
 
 run-gdbstub-sha1: sha1
        $(call run-test, $@, $(GDB_SCRIPT) \
-               --gdb $(HAVE_GDB_BIN) \
+               --gdb $(GDB) \
                --qemu $(QEMU) --qargs "$(QEMU_OPTS)" \
                --bin $< --test $(MULTIARCH_SRC)/gdbstub/sha1.py, \
        basic gdbstub support)
 
 run-gdbstub-qxfer-auxv-read: sha1
        $(call run-test, $@, $(GDB_SCRIPT) \
-               --gdb $(HAVE_GDB_BIN) \
+               --gdb $(GDB) \
                --qemu $(QEMU) --qargs "$(QEMU_OPTS)" \
                --bin $< --test $(MULTIARCH_SRC)/gdbstub/test-qxfer-auxv-read.py, \
        basic gdbstub qXfer:auxv:read support)
 
 run-gdbstub-proc-mappings: sha1
        $(call run-test, $@, $(GDB_SCRIPT) \
-               --gdb $(HAVE_GDB_BIN) \
+               --gdb $(GDB) \
                --qemu $(QEMU) --qargs "$(QEMU_OPTS)" \
                --bin $< --test $(MULTIARCH_SRC)/gdbstub/test-proc-mappings.py, \
        proc mappings support)
 
 run-gdbstub-thread-breakpoint: testthread
        $(call run-test, $@, $(GDB_SCRIPT) \
-               --gdb $(HAVE_GDB_BIN) \
+               --gdb $(GDB) \
                --qemu $(QEMU) --qargs "$(QEMU_OPTS)" \
                --bin $< --test $(MULTIARCH_SRC)/gdbstub/test-thread-breakpoint.py, \
        hitting a breakpoint on non-main thread)
-
-else
-run-gdbstub-%:
-       $(call skip-test, "gdbstub test $*", "no guest arch support")
-endif
 else
 run-gdbstub-%:
-       $(call skip-test, "gdbstub test $*", "need working gdb")
+       $(call skip-test, "gdbstub test $*", "need working gdb with $(patsubst -%,,$(TARGET_NAME)) support")
 endif
 EXTRA_RUNS += run-gdbstub-sha1 run-gdbstub-qxfer-auxv-read \
              run-gdbstub-proc-mappings run-gdbstub-thread-breakpoint
index 90810a32b2f195b70a239a0242235fe096388906..dee4f58dea1630ddcd4b7acec5a86507ea75d632 100644 (file)
@@ -14,13 +14,12 @@ VPATH+=$(MULTIARCH_SYSTEM_SRC)
 MULTIARCH_TEST_SRCS=$(wildcard $(MULTIARCH_SYSTEM_SRC)/*.c)
 MULTIARCH_TESTS = $(patsubst $(MULTIARCH_SYSTEM_SRC)/%.c, %, $(MULTIARCH_TEST_SRCS))
 
-ifneq ($(HAVE_GDB_BIN),)
-ifeq ($(HOST_GDB_SUPPORTS_ARCH),y)
+ifneq ($(GDB),)
 GDB_SCRIPT=$(SRC_PATH)/tests/guest-debug/run-test.py
 
 run-gdbstub-memory: memory
        $(call run-test, $@, $(GDB_SCRIPT) \
-               --gdb $(HAVE_GDB_BIN) \
+               --gdb $(GDB) \
                --qemu $(QEMU) \
                --output $<.gdb.out \
                --qargs \
@@ -29,7 +28,7 @@ run-gdbstub-memory: memory
        softmmu gdbstub support)
 run-gdbstub-interrupt: interrupt
        $(call run-test, $@, $(GDB_SCRIPT) \
-               --gdb $(HAVE_GDB_BIN) \
+               --gdb $(GDB) \
                --qemu $(QEMU) \
                --output $<.gdb.out \
                --qargs \
@@ -38,7 +37,7 @@ run-gdbstub-interrupt: interrupt
        softmmu gdbstub support)
 run-gdbstub-untimely-packet: hello
        $(call run-test, $@, $(GDB_SCRIPT) \
-               --gdb $(HAVE_GDB_BIN) \
+               --gdb $(GDB) \
                --gdb-args "-ex 'set debug remote 1'" \
                --output untimely-packet.gdb.out \
                --stderr untimely-packet.gdb.err \
@@ -51,11 +50,7 @@ run-gdbstub-untimely-packet: hello
                "GREP", file untimely-packet.gdb.err)
 else
 run-gdbstub-%:
-       $(call skip-test, "gdbstub test $*", "no guest arch support")
-endif
-else
-run-gdbstub-%:
-       $(call skip-test, "gdbstub test $*", "need working gdb")
+       $(call skip-test, "gdbstub test $*", "need working gdb with $(patsubst -%,,$(TARGET_NAME)) support")
 endif
 
 MULTIARCH_RUNS += run-gdbstub-memory run-gdbstub-interrupt run-gdbstub-untimely-packet
index c650aefe5c1f427784e3c82d0cc9b7c5f814d4c0..826f0a18e43481801247cacd3a5d89d34577fe11 100644 (file)
@@ -81,12 +81,12 @@ $(Z15_TESTS): CFLAGS+=-march=z15 -O2
 TESTS+=$(Z15_TESTS)
 endif
 
-ifeq ($(HOST_GDB_SUPPORTS_ARCH),y)
+ifneq ($(GDB),)
 GDB_SCRIPT=$(SRC_PATH)/tests/guest-debug/run-test.py
 
 run-gdbstub-signals-s390x: signals-s390x
        $(call run-test, $@, $(GDB_SCRIPT) \
-               --gdb $(HAVE_GDB_BIN) \
+               --gdb $(GDB) \
                --qemu $(QEMU) --qargs "$(QEMU_OPTS)" \
                --bin $< --test $(S390X_SRC)/gdbstub/test-signals-s390x.py, \
        mixing signals and debugging)
@@ -95,7 +95,7 @@ hello-s390x-asm: CFLAGS+=-nostdlib
 
 run-gdbstub-svc: hello-s390x-asm
        $(call run-test, $@, $(GDB_SCRIPT) \
-               --gdb $(HAVE_GDB_BIN) \
+               --gdb $(GDB) \
                --qemu $(QEMU) --qargs "$(QEMU_OPTS)" \
                --bin $< --test $(S390X_SRC)/gdbstub/test-svc.py, \
        single-stepping svc)