Expect for "@" when doing "complete break ada" on gdb.ada/complete.exp
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-18 Sergio Durigan Junior <sergiodj@redhat.com> * gdb.ada/complete.exp: Expect for "@" when doing "complete break ada".
This commit is contained in:
parent
40f03055a2
commit
7a6d2b458f
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2018-09-18 Sergio Durigan Junior <sergiodj@redhat.com>
|
||||
|
||||
* gdb.ada/complete.exp: Expect for "@" when doing "complete
|
||||
break ada".
|
||||
|
||||
2018-09-17 Simon Marchi <simon.marchi@polymtl.ca>
|
||||
|
||||
PR python/23669
|
||||
|
|
|
@ -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 $" {
|
||||
|
|
Loading…
Add table
Reference in a new issue