aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom de Vries <tdevries@suse.de>2020-10-28 10:01:32 +0100
committerTom de Vries <tdevries@suse.de>2020-10-28 10:01:32 +0100
commitfdd67a422f898e5b0c80ccc1121af438328a9b1a (patch)
treeb591b9f9e3e9098bed6a8f59eb312db78a6f1c5c
parent706baf4c504053887add26bb8b7789ea28c64491 (diff)
downloadgdb-fdd67a422f898e5b0c80ccc1121af438328a9b1a.zip
gdb-fdd67a422f898e5b0c80ccc1121af438328a9b1a.tar.gz
gdb-fdd67a422f898e5b0c80ccc1121af438328a9b1a.tar.bz2
[gdb/testsuite] Fix gdb.dwarf2/dw2-filename.exp with -readnow
When running test-case gdb.dwarf2/dw2-filename.exp with target board -readnow, we run into: ... FAIL: gdb.dwarf2/dw2-filename.exp: info sources ... The normal output is: ... (gdb) info sources^M Source files for which symbols have been read in:^M ^M Source files for which symbols will be read in on demand:^M ^M src/gdb/testsuite/gdb.dwarf2/file1.txt^M (gdb) ... but with -readnow file1.txt appears in the "Source files for which symbols have been read in" catagory instead, as expected. Fix the FAIL by making the regexp match the -readnow output. Tested on x86_64-linux. gdb/testsuite/ChangeLog: 2020-10-28 Tom de Vries <tdevries@suse.de> * gdb.dwarf2/dw2-filename.exp: Update regexp for -readnow.
-rw-r--r--gdb/testsuite/ChangeLog4
-rw-r--r--gdb/testsuite/gdb.dwarf2/dw2-filename.exp2
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index 20555ec..4fa4ac7 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,5 +1,9 @@
2020-10-28 Tom de Vries <tdevries@suse.de>
+ * gdb.dwarf2/dw2-filename.exp: Update regexp for -readnow.
+
+2020-10-28 Tom de Vries <tdevries@suse.de>
+
* gdb.dwarf2/dw2-stack-boundary.exp: KFAILing the complaints for
-readnow.
diff --git a/gdb/testsuite/gdb.dwarf2/dw2-filename.exp b/gdb/testsuite/gdb.dwarf2/dw2-filename.exp
index 5879c4f..a04a6d6 100644
--- a/gdb/testsuite/gdb.dwarf2/dw2-filename.exp
+++ b/gdb/testsuite/gdb.dwarf2/dw2-filename.exp
@@ -40,4 +40,4 @@ gdb_test "interpreter-exec mi -file-list-exec-source-files" \
".*{file=\"file1\\.txt\",fullname=\".+file1\\.txt\"}.*"
# And `info sources' should return the fullname incl. the directories.
-gdb_test "info sources" {[/\\]file1\.txt}
+gdb_test "info sources" {[/]file1\.txt.*}