Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [PATCH][gdb/testsuite] Don't use FOOBAR pattern in gdb_test
@ 2019-09-19 13:40 Tom de Vries
  2019-09-19 16:41 ` Andrew Burgess
  0 siblings, 1 reply; 2+ messages in thread
From: Tom de Vries @ 2019-09-19 13:40 UTC (permalink / raw)
  To: gdb-patches

Hi,

If gdb_test is used with fewer than five arguments, then the question_string
defaults to "^FOOBAR$":
...
    if [llength $args]==5 {
       set question_string [lindex $args 3]
       set response_string [lindex $args 4]
    } else {
       set question_string "^FOOBAR$"
    }
...

This can however match "FOOBAR", so perhaps "\$FOOBAR^" would have been a
better choice.

Eliminate the FOOBAR pattern from gdb_test by instead of defining a default
regexp, conditionally appending the regexp matching to a user_code variable.

Tested on x86_64-linux.

OK for trunk?

Thanks,
- Tom

[gdb/testsuite] Don't use FOOBAR pattern in gdb_test

gdb/testsuite/ChangeLog:

2019-09-19  Tom de Vries  <tdevries@suse.de>

	* lib/gdb.exp (gdb_test): Eliminate "^FOOBAR$" pattern.

---
 gdb/testsuite/lib/gdb.exp | 28 ++++++++++++++++------------
 1 file changed, 16 insertions(+), 12 deletions(-)

diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp
index acbeb01376..3a1f053cf8 100644
--- a/gdb/testsuite/lib/gdb.exp
+++ b/gdb/testsuite/lib/gdb.exp
@@ -1083,24 +1083,28 @@ proc gdb_test { args } {
     set command [lindex $args 0]
     set pattern [lindex $args 1]
 
-    if [llength $args]==5 {
-	set question_string [lindex $args 3]
-	set response_string [lindex $args 4]
-    } else {
-	set question_string "^FOOBAR$"
-    }
-
-    return [gdb_test_multiple $command $message {
+    set user_code {}
+    lappend user_code {
 	-re "\[\r\n\]*(?:$pattern)\[\r\n\]+$gdb_prompt $" {
 	    if ![string match "" $message] then {
 		pass "$message"
             }
         }
-	-re "(${question_string})$" {
-	    send_gdb "$response_string\n"
-	    exp_continue
+    }
+
+    if { [llength $args] == 5 } {
+	set question_string [lindex $args 3]
+	set response_string [lindex $args 4]
+	lappend user_code {
+	    -re "(${question_string})$" {
+		send_gdb "$response_string\n"
+		exp_continue
+	    }
 	}
-     }]
+     }
+
+    set user_code [join $user_code]
+    return [gdb_test_multiple $command $message $user_code]
 }
 
 # Return 1 if version MAJOR.MINOR is at least AT_LEAST_MAJOR.AT_LEAST_MINOR.


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH][gdb/testsuite] Don't use FOOBAR pattern in gdb_test
  2019-09-19 13:40 [PATCH][gdb/testsuite] Don't use FOOBAR pattern in gdb_test Tom de Vries
@ 2019-09-19 16:41 ` Andrew Burgess
  0 siblings, 0 replies; 2+ messages in thread
From: Andrew Burgess @ 2019-09-19 16:41 UTC (permalink / raw)
  To: Tom de Vries; +Cc: gdb-patches

* Tom de Vries <tdevries@suse.de> [2019-09-19 15:40:53 +0200]:

> Hi,
> 
> If gdb_test is used with fewer than five arguments, then the question_string
> defaults to "^FOOBAR$":
> ...
>     if [llength $args]==5 {
>        set question_string [lindex $args 3]
>        set response_string [lindex $args 4]
>     } else {
>        set question_string "^FOOBAR$"
>     }
> ...
> 
> This can however match "FOOBAR", so perhaps "\$FOOBAR^" would have been a
> better choice.
> 
> Eliminate the FOOBAR pattern from gdb_test by instead of defining a default
> regexp, conditionally appending the regexp matching to a user_code variable.
> 
> Tested on x86_64-linux.
> 
> OK for trunk?

Looks good to me, a nice clean up.

Thanks,
Andrew



> 
> Thanks,
> - Tom
> 
> [gdb/testsuite] Don't use FOOBAR pattern in gdb_test
> 
> gdb/testsuite/ChangeLog:
> 
> 2019-09-19  Tom de Vries  <tdevries@suse.de>
> 
> 	* lib/gdb.exp (gdb_test): Eliminate "^FOOBAR$" pattern.
> 
> ---
>  gdb/testsuite/lib/gdb.exp | 28 ++++++++++++++++------------
>  1 file changed, 16 insertions(+), 12 deletions(-)
> 
> diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp
> index acbeb01376..3a1f053cf8 100644
> --- a/gdb/testsuite/lib/gdb.exp
> +++ b/gdb/testsuite/lib/gdb.exp
> @@ -1083,24 +1083,28 @@ proc gdb_test { args } {
>      set command [lindex $args 0]
>      set pattern [lindex $args 1]
>  
> -    if [llength $args]==5 {
> -	set question_string [lindex $args 3]
> -	set response_string [lindex $args 4]
> -    } else {
> -	set question_string "^FOOBAR$"
> -    }
> -
> -    return [gdb_test_multiple $command $message {
> +    set user_code {}
> +    lappend user_code {
>  	-re "\[\r\n\]*(?:$pattern)\[\r\n\]+$gdb_prompt $" {
>  	    if ![string match "" $message] then {
>  		pass "$message"
>              }
>          }
> -	-re "(${question_string})$" {
> -	    send_gdb "$response_string\n"
> -	    exp_continue
> +    }
> +
> +    if { [llength $args] == 5 } {
> +	set question_string [lindex $args 3]
> +	set response_string [lindex $args 4]
> +	lappend user_code {
> +	    -re "(${question_string})$" {
> +		send_gdb "$response_string\n"
> +		exp_continue
> +	    }
>  	}
> -     }]
> +     }
> +
> +    set user_code [join $user_code]
> +    return [gdb_test_multiple $command $message $user_code]
>  }
>  
>  # Return 1 if version MAJOR.MINOR is at least AT_LEAST_MAJOR.AT_LEAST_MINOR.


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-09-19 16:41 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-19 13:40 [PATCH][gdb/testsuite] Don't use FOOBAR pattern in gdb_test Tom de Vries
2019-09-19 16:41 ` Andrew Burgess

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox