summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom de Vries <tdevries@suse.de>2021-03-31 15:17:19 +0200
committerTom de Vries <tdevries@suse.de>2021-03-31 15:17:19 +0200
commitcfcbd506fb0262070f58d089bf58502d8f677dd5 (patch)
treee8ee44cf472de7d27b742cbd28d2b12e5f16c72f
parentfdb21288ca98d0ebb7819a752631a31aa0010be3 (diff)
downloadbinutils-gdb-cfcbd506fb0262070f58d089bf58502d8f677dd5.tar.gz
[gdb/testsuite] Ignore DEBUGINFOD_URLS
On openSUSE Tumbleweed, DEBUGINFOD_URLS is now defined by default: ... $ echo $DEBUGINFOD_URLS https://debuginfod.opensuse.org/ ... With DEBUGINFOD_URLS defined we run into: ... FAIL: gdb.mi/mi-sym-info.exp: List all functions from debug information only \ (timeout) ... as reported in PR27667. There's a latency of ~0.5s per request, which is ok-ish for interactive usage. But the symbol-info-functions command ends up issuing 21 source requests, which means we easily run into the 10s timeout. Fix this by unsetting DEBUGINFOD_URLS in default_gdb_init. gdb/testsuite/ChangeLog: 2021-03-31 Tom de Vries <tdevries@suse.de> PR testsuite/27667 * lib/gdb.exp (default_gdb_init): Unset DEBUGINFOD_URLS.
-rw-r--r--gdb/testsuite/ChangeLog5
-rw-r--r--gdb/testsuite/lib/gdb.exp6
2 files changed, 11 insertions, 0 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index c5cae58b399..2c73da6ade1 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2021-03-31 Tom de Vries <tdevries@suse.de>
+
+ PR testsuite/27667
+ * lib/gdb.exp (default_gdb_init): Unset DEBUGINFOD_URLS.
+
2021-03-30 Simon Marchi <simon.marchi@polymtl.ca>
PR gdb/27541
diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp
index 73fea3a104d..3cdc39dc819 100644
--- a/gdb/testsuite/lib/gdb.exp
+++ b/gdb/testsuite/lib/gdb.exp
@@ -5270,6 +5270,12 @@ proc default_gdb_init { test_file_name } {
# tests.
setenv TERM "dumb"
+ # If DEBUGINFOD_URLS is set, gdb will try to download sources and
+ # debug info for f.i. system libraries. Prevent this.
+ if { [info exists env(DEBUGINFOD_URLS)] } {
+ unsetenv DEBUGINFOD_URLS
+ }
+
# Ensure that GDBHISTFILE and GDBHISTSIZE are removed from the
# environment, we don't want these modifications to the history
# settings.