diff options
author | Tom de Vries <tdevries@suse.de> | 2020-03-14 10:17:10 +0100 |
---|---|---|
committer | Tom de Vries <tdevries@suse.de> | 2020-03-14 10:17:10 +0100 |
commit | 09546b56ede31ca2b401e9b03466e8e1fb84d85f (patch) | |
tree | f54cc20c8158c21de5c32eaefa95c578489d027c /gdb/testsuite | |
parent | 780f96aed2b4db1014e8fa2b50118676d8af0e46 (diff) | |
download | gdb-09546b56ede31ca2b401e9b03466e8e1fb84d85f.zip gdb-09546b56ede31ca2b401e9b03466e8e1fb84d85f.tar.gz gdb-09546b56ede31ca2b401e9b03466e8e1fb84d85f.tar.bz2 |
[gdb/testsuite] Fix FAIL in gdb.base/printcmds.exp
With test-case gdb.base/printcmds.exp, I run into:
...
(gdb) print teststring2^M
$563 = (charptr) "more contents"^M
(gdb) FAIL: gdb.base/printcmds.exp: print teststring2
...
The corresponding test is:
...
gdb_test "print teststring2" " = (charptr) \"more contents\""
...
Fix the FAIL by adding the missing quoting for the parentheses around charptr.
Tested on x86_64-linux.
gdb/testsuite/ChangeLog:
2020-03-14 Tom de Vries <tdevries@suse.de>
* gdb.base/printcmds.exp: Add missing quoting for "print
teststring2".
Diffstat (limited to 'gdb/testsuite')
-rw-r--r-- | gdb/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/printcmds.exp | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index ec22de8..9f65a4e 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2020-03-14 Tom de Vries <tdevries@suse.de> + + * gdb.base/printcmds.exp: Add missing quoting for "print + teststring2". + 2020-03-13 Tom Tromey <tom@tromey.com> * gdb.base/printcmds.exp (test_print_strings): Add regression diff --git a/gdb/testsuite/gdb.base/printcmds.exp b/gdb/testsuite/gdb.base/printcmds.exp index 2c8baad..066e7fc 100644 --- a/gdb/testsuite/gdb.base/printcmds.exp +++ b/gdb/testsuite/gdb.base/printcmds.exp @@ -520,7 +520,7 @@ proc test_print_strings {} { " = (.unsigned char .. )?\"teststring contents\"" "p teststring with elements set to 20" gdb_test "print teststring2" \ - " = (charptr) \"more contents\"" + " = \\(charptr\\) \"more contents\"" gdb_test_no_output "set print elements 8" |