Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [PATCH] Expect for "@" when doing "complete break ada" on gdb.ada/complete.exp
@ 2018-09-17 21:33 Sergio Durigan Junior
  2018-09-18 15:03 ` Joel Brobecker
  0 siblings, 1 reply; 3+ messages in thread
From: Sergio Durigan Junior @ 2018-09-17 21:33 UTC (permalink / raw)
  To: GDB Patches; +Cc: Sergio Durigan Junior

Currently, gdb.ada/complete.exp's "complete break ada" test fails
because the regexp used to match the command's output doesn't expect
"@", but we have an output like:

  ...
  complete break ada
  break ada.assertions.assert
  break ada.calendar.arithmetic.difference
  break ada.calendar.arithmetic_operations.add
  break ada.calendar.arithmetic_operations.add.cold
  break ada.calendar.arithmetic_operations.add@plt
  break ada.calendar.arithmetic_operations.difference
  break ada.calendar.arithmetic_operations.difference@plt
  ...

This patch adds "@" to the regexp, unbreaking the test.

OK?

gdb/testsuite/ChangeLog:
2018-09-17  Sergio Durigan Junior  <sergiodj@redhat.com>

	* gdb.ada/complete.exp: Expect for "@" when doing "complete
	break ada".
---
 gdb/testsuite/gdb.ada/complete.exp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gdb/testsuite/gdb.ada/complete.exp b/gdb/testsuite/gdb.ada/complete.exp
index cb9e4ae7ff..ac2bf85077 100644
--- a/gdb/testsuite/gdb.ada/complete.exp
+++ b/gdb/testsuite/gdb.ada/complete.exp
@@ -218,7 +218,7 @@ gdb_test_no_output "set max-completions unlimited"
 
 set test "complete break ada"
 gdb_test_multiple "$test" $test {
-    -re "^$test$eol\(break ada(\[a-z0-9._\])*$eol\)+$gdb_prompt $" {
+    -re "^$test$eol\(break ada(\[a-z0-9._@\])*$eol\)+$gdb_prompt $" {
         pass $test
     }
     -re "\[A-Z\].*$gdb_prompt $" {
-- 
2.17.1


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

* Re: [PATCH] Expect for "@" when doing "complete break ada" on gdb.ada/complete.exp
  2018-09-17 21:33 [PATCH] Expect for "@" when doing "complete break ada" on gdb.ada/complete.exp Sergio Durigan Junior
@ 2018-09-18 15:03 ` Joel Brobecker
  2018-09-18 17:51   ` Sergio Durigan Junior
  0 siblings, 1 reply; 3+ messages in thread
From: Joel Brobecker @ 2018-09-18 15:03 UTC (permalink / raw)
  To: Sergio Durigan Junior; +Cc: GDB Patches

Hi Sergio,

Thanks for the patch!

> Currently, gdb.ada/complete.exp's "complete break ada" test fails
> because the regexp used to match the command's output doesn't expect
> "@", but we have an output like:
> 
>   ...
>   complete break ada
>   break ada.assertions.assert
>   break ada.calendar.arithmetic.difference
>   break ada.calendar.arithmetic_operations.add
>   break ada.calendar.arithmetic_operations.add.cold
>   break ada.calendar.arithmetic_operations.add@plt
>   break ada.calendar.arithmetic_operations.difference
>   break ada.calendar.arithmetic_operations.difference@plt
>   ...
> 
> This patch adds "@" to the regexp, unbreaking the test.
> 
> OK?
> 
> gdb/testsuite/ChangeLog:
> 2018-09-17  Sergio Durigan Junior  <sergiodj@redhat.com>
> 
> 	* gdb.ada/complete.exp: Expect for "@" when doing "complete
> 	break ada".

I can see this behavior, but only when I link with the shared
version of libgnat. For us at least, on x86_64-linux, this is not
the default. That's probably why I wasn't seeing this.

This is OK.

>  gdb/testsuite/gdb.ada/complete.exp | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/gdb/testsuite/gdb.ada/complete.exp b/gdb/testsuite/gdb.ada/complete.exp
> index cb9e4ae7ff..ac2bf85077 100644
> --- a/gdb/testsuite/gdb.ada/complete.exp
> +++ b/gdb/testsuite/gdb.ada/complete.exp
> @@ -218,7 +218,7 @@ gdb_test_no_output "set max-completions unlimited"
>  
>  set test "complete break ada"
>  gdb_test_multiple "$test" $test {
> -    -re "^$test$eol\(break ada(\[a-z0-9._\])*$eol\)+$gdb_prompt $" {
> +    -re "^$test$eol\(break ada(\[a-z0-9._@\])*$eol\)+$gdb_prompt $" {
>          pass $test
>      }
>      -re "\[A-Z\].*$gdb_prompt $" {
> -- 
> 2.17.1

-- 
Joel


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

* Re: [PATCH] Expect for "@" when doing "complete break ada" on gdb.ada/complete.exp
  2018-09-18 15:03 ` Joel Brobecker
@ 2018-09-18 17:51   ` Sergio Durigan Junior
  0 siblings, 0 replies; 3+ messages in thread
From: Sergio Durigan Junior @ 2018-09-18 17:51 UTC (permalink / raw)
  To: Joel Brobecker; +Cc: GDB Patches

On Tuesday, September 18 2018, Joel Brobecker wrote:

> Hi Sergio,

Hey Joel,

> Thanks for the patch!

My pleasure :-).

>> Currently, gdb.ada/complete.exp's "complete break ada" test fails
>> because the regexp used to match the command's output doesn't expect
>> "@", but we have an output like:
>> 
>>   ...
>>   complete break ada
>>   break ada.assertions.assert
>>   break ada.calendar.arithmetic.difference
>>   break ada.calendar.arithmetic_operations.add
>>   break ada.calendar.arithmetic_operations.add.cold
>>   break ada.calendar.arithmetic_operations.add@plt
>>   break ada.calendar.arithmetic_operations.difference
>>   break ada.calendar.arithmetic_operations.difference@plt
>>   ...
>> 
>> This patch adds "@" to the regexp, unbreaking the test.
>> 
>> OK?
>> 
>> gdb/testsuite/ChangeLog:
>> 2018-09-17  Sergio Durigan Junior  <sergiodj@redhat.com>
>> 
>> 	* gdb.ada/complete.exp: Expect for "@" when doing "complete
>> 	break ada".
>
> I can see this behavior, but only when I link with the shared
> version of libgnat. For us at least, on x86_64-linux, this is not
> the default. That's probably why I wasn't seeing this.

Ah, I see.  TBH, I haven't investigate this further.  I'm glad you can
reproduce it there.

> This is OK.

Thanks, pushed.

7a6d2b458f95030f433a0dcdabd5cda7ee695a9b

-- 
Sergio
GPG key ID: 237A 54B1 0287 28BF 00EF  31F4 D0EB 7628 65FC 5E36
Please send encrypted e-mail if possible
http://sergiodj.net/


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

end of thread, other threads:[~2018-09-18 17:51 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-17 21:33 [PATCH] Expect for "@" when doing "complete break ada" on gdb.ada/complete.exp Sergio Durigan Junior
2018-09-18 15:03 ` Joel Brobecker
2018-09-18 17:51   ` Sergio Durigan Junior

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