mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-24 12:23:31 +08:00
* gdb.base/maint.exp: Avoid wildcards against potentially very long
"maint print statistics" output to prevent expect timeouts.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2010-09-08 Ulrich Weigand <uweigand@de.ibm.com>
|
||||||
|
|
||||||
|
* gdb.base/maint.exp: Avoid wildcards against potentially very long
|
||||||
|
"maint print statistics" output to prevent expect timeouts.
|
||||||
|
|
||||||
2010-09-06 Jan Kratochvil <jan.kratochvil@redhat.com>
|
2010-09-06 Jan Kratochvil <jan.kratochvil@redhat.com>
|
||||||
|
|
||||||
* gdb.base/printcmds.exp (test_float_accepted): Import gdb_prompt.
|
* gdb.base/printcmds.exp (test_float_accepted): Import gdb_prompt.
|
||||||
|
@ -149,15 +149,19 @@ if [istarget "*-*-cygwin*"] {
|
|||||||
set timeout [expr $timeout + 500]
|
set timeout [expr $timeout + 500]
|
||||||
}
|
}
|
||||||
|
|
||||||
gdb_test_multiple "maint print statistics" "maint print statistics" {
|
send_gdb "maint print statistics\n"
|
||||||
-re "Statistics for.*break.*Number of \"minimal\" symbols read.*Number of \"partial\" symbols read.*Number of \"types\" defined.*Number of psym tables \\(not yet expanded\\).*Number of symbol tables.*Number of symbol tables with line tables.*Number of symbol tables with blockvectors.*Total memory used for psymbol obstack.*Total memory used for psymbol cache.*Total memory used for symbol obstack.*Total memory used for type obstack.*$gdb_prompt $" {
|
gdb_expect {
|
||||||
# Old output for gdb 6.0 and earlier
|
-re "Statistics for\[^\n\r\]*break\[^\n\r\]*:\r\n Number of \"minimal\" symbols read: $decimal\r\n Number of \"partial\" symbols read: $decimal\r\n Number of \"full\" symbols read: $decimal\r\n Number of \"types\" defined: $decimal\r\n Number of psym tables \\(not yet expanded\\): $decimal\r\n Number of symbol tables: $decimal\r\n Number of symbol tables with line tables: $decimal\r\n Number of symbol tables with blockvectors: $decimal\r\n Total memory used for objfile obstack: $decimal\r\n Total memory used for psymbol cache: $decimal\r\n Total memory used for macro cache: $decimal\r\n Total memory used for file name cache: $decimal\r\n" {
|
||||||
|
gdb_expect {
|
||||||
|
-re "$gdb_prompt $" {
|
||||||
pass "maint print statistics"
|
pass "maint print statistics"
|
||||||
}
|
}
|
||||||
-re "Statistics for.*break.*Number of \"minimal\" symbols read.*Number of \"partial\" symbols read.*Number of \"types\" defined.*Number of psym tables \\(not yet expanded\\).*Number of symbol tables.*Number of symbol tables with line tables.*Number of symbol tables with blockvectors.*Total memory used for objfile obstack.*Total memory used for psymbol cache.*Total memory used for macro cache.*$gdb_prompt $" {
|
timeout { fail "(timeout) maint print statistics" }
|
||||||
pass "maint print statistics"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
-re ".*$gdb_prompt $" { fail "maint print statistics" }
|
||||||
|
timeout { fail "(timeout) maint print statistics" }
|
||||||
|
}
|
||||||
|
|
||||||
# There aren't any ...
|
# There aren't any ...
|
||||||
gdb_test_no_output "maint print dummy-frames"
|
gdb_test_no_output "maint print dummy-frames"
|
||||||
|
Reference in New Issue
Block a user