From: Jan Kratochvil <jan.kratochvil@redhat.com>
To: Marek Polacek <mpolacek@redhat.com>
Cc: gdb-patches@sourceware.org
Subject: Re: [PATCH] gdb.base/commands.exp: fix racy test (PR testsuite/12649)
Date: Wed, 13 Apr 2011 09:20:00 -0000 [thread overview]
Message-ID: <20110413092029.GA19366@host1.jankratochvil.net> (raw)
In-Reply-To: <4DA55797.5090800@redhat.com>
Hi Marek,
On Wed, 13 Apr 2011 09:58:15 +0200, Marek Polacek wrote:
> The problem is with the ".*" part which just slurps everything,
in normal case, while with the following reproducer it does not slurp
everything which then falsely matches
proc gdb_test_multiple { command message user_code } {
-re "\\((y or n|y or \\\[n\\\]|\\\[y\\\] or n)\\) " {
fail "$message (got interactive prompt)"
> when we use preloaded read() which returns just one char at a time.
The problem reproducer in PR testsuite/12649 has no been mentioned here.
> --- a/gdb/testsuite/ChangeLog
> +++ b/gdb/testsuite/ChangeLog
> @@ -1,3 +1,7 @@
> +2011-04-13 Marek Polacek <mpolacek@redhat.com>
^^^ two spaces here
The ChangeLog entry should be posted as plain text before the final commit, for
example now it already no longer applies to FSF GDB HEAD now.
> + * gdb.base/commands.exp (redefine_backtrace_test): Fix race.
The description should be more detailed. For example you do not mention you
have created a new testcase `expect response to define backtrace'.
> --- a/gdb/testsuite/gdb.base/commands.exp
> +++ b/gdb/testsuite/gdb.base/commands.exp
> @@ -704,18 +704,22 @@ proc redefine_backtrace_test {} {
> global gdb_prompt
>
> gdb_test_multiple "define backtrace" "define backtrace" {
> - -re "Really redefine built-in.*$" {
> + -re "Really redefine built-in command \"backtrace\"\\? \\(y or n\\) $" {
> send_gdb "y\n"
Optional FYI: This send_gdb could be moved below into gdb_test_multiple:
gdb_test_multiple "y" "expect response to define backtrace" {
But please do a PASS call here for better troubleshooting in the future:
pass "define backtrace"
> - exp_continue
> }
> + }
>
> - -re "End with" {
> + # We send nothing this time.
> + gdb_test_multiple "" "expect response to define backtrace" {
> + -re "End with a line saying just \"end\".\r\n>$" {
nitpick - `.' is a metacharacter here, it could be escaped:
-re "End with a line saying just \"end\"\\.\r\n>$" {
> pass "define backtrace in redefine_backtrace_test"
This test has name "expect response to define backtrace" which gets used
during various default FAIL cases by gdb_test_multiple. The PASS name should
match the possible FAIL name, therefore rather some:
pass "expect response to define backtrace"
> }
> - default {
> +
> + default {
> fail "(timeout or eof) define backtrace in redefine_backtrace_test"
> }
This is redundant for gdb_test_multiple now but it is in fact unrelated
change.
I would prefer one re-post before the approval.
Thanks,
Jan
next prev parent reply other threads:[~2011-04-13 9:20 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-04-13 7:58 [PATCH] gdb.base/commands.exp: fix racy test Marek Polacek
2011-04-13 8:55 ` Andreas Schwab
2011-04-13 9:20 ` Jan Kratochvil [this message]
2011-04-13 15:36 ` [PATCH] gdb.base/commands.exp: fix racy test (PR testsuite/12649) Marek Polacek
2011-04-13 15:55 ` Jan Kratochvil
2011-04-13 16:11 ` Marek Polacek
2011-04-13 17:28 ` Jan Kratochvil
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20110413092029.GA19366@host1.jankratochvil.net \
--to=jan.kratochvil@redhat.com \
--cc=gdb-patches@sourceware.org \
--cc=mpolacek@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox