aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.perf
diff options
context:
space:
mode:
authorDoug Evans <xdje42@gmail.com>2014-09-13 15:52:15 -0700
committerDoug Evans <xdje42@gmail.com>2014-09-13 15:52:15 -0700
commit3714cea7d44e2bd9cac28a61d45fcc8c3cc6ae83 (patch)
tree073e28a136ceffb19892e4961fc39030f2f2bbe7 /gdb/testsuite/gdb.perf
parent1a8bdf69e7d1f6084af503407d6a4217b06d6ea5 (diff)
downloadfsf-binutils-gdb-3714cea7d44e2bd9cac28a61d45fcc8c3cc6ae83.zip
fsf-binutils-gdb-3714cea7d44e2bd9cac28a61d45fcc8c3cc6ae83.tar.gz
fsf-binutils-gdb-3714cea7d44e2bd9cac28a61d45fcc8c3cc6ae83.tar.bz2
Pass plain-text prompt to with_gdb_prompt.
I had occasion to use with_gdb_prompt in a test for the patch for PR 17314 and was passing the plain text prompt as the value, "(top-gdb)", instead of a regexp, "\(top-gdb\)" (expressed as "\\(top-gdb\\)" in TCL). I then discovered that in order to restore the prompt gdb passes the original value of $gdb_prompt to "set prompt", which works because "set prompt \(gdb\) " is equivalent to "set prompt (gdb) ". Perhaps I'm being overly cautious but this feels a bit subtle, but at any rate as an API choice I'd much rather pass the plain text form to with_gdb_prompt. I also discovered that the initial value of gdb_prompt is set in two places to two different values. At the global level gdb.exp sets it to "\[(\]gdb\[)\]" and default_gdb_init sets it to "\\(gdb\\)". The former form is undesirable as an argument to "set prompt", but it's not clear to me that just deleting this code won't break anything. Thus I just changed the value to be consistent and added a comment. gdb/testsuite/ChangeLog: * lib/gdb.exp (gdb_prompt): Add comment and change initial value to be consistent with what default_gdb_init uses. (with_gdb_prompt): Change form of PROMPT argument from a regexp to the plain text of the prompt. Add some logging printfs. * gdb.perf/disassemble.exp: Update call to with_gdb_prompt.
Diffstat (limited to 'gdb/testsuite/gdb.perf')
-rw-r--r--gdb/testsuite/gdb.perf/disassemble.exp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/testsuite/gdb.perf/disassemble.exp b/gdb/testsuite/gdb.perf/disassemble.exp
index 07c9766..54a5bd8 100644
--- a/gdb/testsuite/gdb.perf/disassemble.exp
+++ b/gdb/testsuite/gdb.perf/disassemble.exp
@@ -41,7 +41,7 @@ PerfTest::assemble {
# When GDB is debugging GDB, the prompt is changed to "(top-gdb) ".
# In order to avoid the confusion of pattern matching, set the
# gdb_prompt to '(top-gdb)' temporarily.
- with_gdb_prompt "\\(top-gdb\\)" {
+ with_gdb_prompt "(top-gdb)" {
gdb_load ${binfile}
}