aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom de Vries <tdevries@suse.de>2023-08-30 23:33:31 +0200
committerTom de Vries <tdevries@suse.de>2023-08-30 23:33:31 +0200
commit50e193c1862029e8de71c7bcd0863c17ad37bfa5 (patch)
treea436a4d94770b7799057e86283fffadd2004dbf8
parent7c651c5fe6de738b0ce9b5b89568fde84eade807 (diff)
downloadgdb-50e193c1862029e8de71c7bcd0863c17ad37bfa5.zip
gdb-50e193c1862029e8de71c7bcd0863c17ad37bfa5.tar.gz
gdb-50e193c1862029e8de71c7bcd0863c17ad37bfa5.tar.bz2
[gdb/testsuite] Fix gdb.dwarf2/nullptr_t.exp with cc-with-dwz-m
When running test-case gdb.dwarf2/nullptr_t.exp with target board cc-with-dwz-m, I run into: ... FAIL: gdb.dwarf2/nullptr_t.exp: decltype(nullptr) symbol ... The problem is that were looking for "typedef void decltype\\(nullptr\\)" using "maint print symbols -source $srcfile", but dwz has moved the typedef to a PU, so it's shown by "maint print symbols -source <unknown>" instead. Fix this by dropping the "-source $srcfile" bit. Tested on x86_64-linux, with make-check-all.sh.
-rw-r--r--gdb/testsuite/gdb.dwarf2/nullptr_t.exp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/testsuite/gdb.dwarf2/nullptr_t.exp b/gdb/testsuite/gdb.dwarf2/nullptr_t.exp
index df2f163..b28f8b9 100644
--- a/gdb/testsuite/gdb.dwarf2/nullptr_t.exp
+++ b/gdb/testsuite/gdb.dwarf2/nullptr_t.exp
@@ -39,6 +39,6 @@ with_complaints 5 {
gdb_test $cmd $re "$cmd without complaints"
}
-gdb_test "maint print symbols -source $srcfile" \
+gdb_test "maint print symbols" \
"typedef void decltype\\(nullptr\\); \r\n.*" \
"decltype(nullptr) symbol"