aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.python/py-symbol-3.c
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2024-12-18 17:36:09 -0700
committerTom Tromey <tom@tromey.com>2024-12-31 13:35:38 -0700
commit1c7d9f96cb5c91e43d6ed9fb9081b9c94d06e548 (patch)
tree73d1e97104e50d10596a8ed7b4f445ea2d9c462b /gdb/testsuite/gdb.python/py-symbol-3.c
parent0f68254da9cead7aa6dde90e3a17cc9e385ae711 (diff)
downloadbinutils-1c7d9f96cb5c91e43d6ed9fb9081b9c94d06e548.zip
binutils-1c7d9f96cb5c91e43d6ed9fb9081b9c94d06e548.tar.gz
binutils-1c7d9f96cb5c91e43d6ed9fb9081b9c94d06e548.tar.bz2
Use 'flags' when expanding symtabs in gdbpy_lookup_static_symbols
This changes gdbpy_lookup_static_symbols to pass the 'flags' parameter to expand_symtabs_matching. This should refine the search somewhat. Note this is "just" a performance improvement, as the loop over symtabs already checks 'flags'. v2 also removes 'SEARCH_GLOBAL_BLOCK' and updates py-symbol.exp to verify that this works properly. Thanks to Tom for this insight. Co-Authored-By: Tom de Vries <tdevries@suse.de>
Diffstat (limited to 'gdb/testsuite/gdb.python/py-symbol-3.c')
-rw-r--r--gdb/testsuite/gdb.python/py-symbol-3.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.python/py-symbol-3.c b/gdb/testsuite/gdb.python/py-symbol-3.c
new file mode 100644
index 0000000..6a95193
--- /dev/null
+++ b/gdb/testsuite/gdb.python/py-symbol-3.c
@@ -0,0 +1,20 @@
+/* This testcase is part of GDB, the GNU debugger.
+
+ Copyright 2024 Free Software Foundation, Inc.
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>. */
+
+/* A global 'rr' -- used for testing that lookup_static_symbols does
+ not find it. */
+int __attribute__ ((used)) rr = 107;