[gdb/testsuite] Fix gdb.dwarf2/nullptr_t.exp with cc-with-dwz-m
authorTom de Vries <tdevries@suse.de>
Wed, 30 Aug 2023 21:33:31 +0000 (23:33 +0200)
committerTom de Vries <tdevries@suse.de>
Wed, 30 Aug 2023 21:33:31 +0000 (23:33 +0200)
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.

gdb/testsuite/gdb.dwarf2/nullptr_t.exp

index df2f163af3813c16593100f47315af4762c3c282..b28f8b90daa3833f5cc764be5d72dda68b1a64d8 100644 (file)
@@ -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"