* gdb.base/call-strs.exp, gdb.base/default.exp,

gdb.base/ending-run.exp, gdb.base/finish.exp, gdb.base/funcargs.exp,
	gdb.base/huge.exp, gdb.base/nodebug.exp, gdb.base/ptype.exp,
	gdb.base/restore.exp, gdb.base/return.exp, gdb.base/setvar.exp,
	gdb.base/watchpoints.exp, gdb.threads/gcore-thread.exp,
	gdb.base/watchpoint-solib.exp: Save and restore timeout.
	* gdb.base/ending-run.exp: Correct restore of timeout.
	* gdb.base/page.exp: Remove unnecessary timeout setting.
This commit is contained in:
Daniel Jacobowitz 2010-01-29 15:38:38 +00:00
parent e4e2711a4a
commit 97f2ed50d0
17 changed files with 55 additions and 18 deletions

View File

@ -1,3 +1,14 @@
2010-01-29 Daniel Jacobowitz <dan@codesourcery.com>
* gdb.base/call-strs.exp, gdb.base/default.exp,
gdb.base/ending-run.exp, gdb.base/finish.exp, gdb.base/funcargs.exp,
gdb.base/huge.exp, gdb.base/nodebug.exp, gdb.base/ptype.exp,
gdb.base/restore.exp, gdb.base/return.exp, gdb.base/setvar.exp,
gdb.base/watchpoints.exp, gdb.threads/gcore-thread.exp,
gdb.base/watchpoint-solib.exp: Save and restore timeout.
* gdb.base/ending-run.exp: Correct restore of timeout.
* gdb.base/page.exp: Remove unnecessary timeout setting.
2010-01-29 Joel Brobecker <brobecker@adacore.com> 2010-01-29 Joel Brobecker <brobecker@adacore.com>
* gdb.ada/rec_return: New testcase. * gdb.ada/rec_return: New testcase.

View File

@ -95,13 +95,14 @@ send_gdb "set print sevenbit-strings\n" ; gdb_expect -re "$gdb_prompt $"
send_gdb "set print address off\n" ; gdb_expect -re "$gdb_prompt $" send_gdb "set print address off\n" ; gdb_expect -re "$gdb_prompt $"
send_gdb "set width 0\n" ; gdb_expect -re "$gdb_prompt $" send_gdb "set width 0\n" ; gdb_expect -re "$gdb_prompt $"
set timeout 120
if ![runto_main] then { if ![runto_main] then {
perror "couldn't run to breakpoint" perror "couldn't run to breakpoint"
continue continue
} }
set prev_timeout $timeout
set timeout 120
#step #step
send_gdb "step\n" send_gdb "step\n"
gdb_expect { gdb_expect {
@ -263,4 +264,6 @@ if ![gdb_skip_stdio_test "call str_func(s,s,s,s,s,s,s,s)"] {
} }
gdb_exit gdb_exit
return 0
set timeout $prev_timeout

View File

@ -20,6 +20,7 @@
gdb_exit gdb_exit
gdb_start gdb_start
set prev_timeout $timeout
set timeout 60 set timeout 60
# #
@ -801,3 +802,5 @@ gdb_test "where" "No stack." "where"
gdb_test "x" "Argument required .starting display address.*" "x" gdb_test "x" "Argument required .starting display address.*" "x"
gdb_exit gdb_exit
set timeout $prev_timeout

View File

@ -261,8 +261,6 @@ if {! [target_info exists use_gdb_stub]
unsupported "continue after exit" unsupported "continue after exit"
} }
set timeout $old_timeout
if {$program_exited_normally} { if {$program_exited_normally} {
gdb_test "n" ".*The program is not being run.*" "don't step after run" gdb_test "n" ".*The program is not being run.*" "don't step after run"
} elseif {$program_not_exited} { } elseif {$program_not_exited} {
@ -285,6 +283,8 @@ if {! [target_info exists use_gdb_stub]
} }
} }
set timeout $old_timeout
#remote_exec build "rm -f ${binfile}" #remote_exec build "rm -f ${binfile}"
return 0 return 0

View File

@ -124,5 +124,7 @@ proc finish_tests { } {
finish_abbreviation "fin" finish_abbreviation "fin"
} }
set prev_timeout $timeout
set timeout 30 set timeout 30
finish_tests finish_tests
set timeout $prev_timeout

View File

@ -108,6 +108,7 @@ if {$i >= [llength $lines]} {
gdb_run_cmd gdb_run_cmd
set prev_timeout $timeout
set timeout 120 set timeout 120
gdb_test_multiple "" "run program with breakpoint commands" { gdb_test_multiple "" "run program with breakpoint commands" {
@ -121,3 +122,5 @@ gdb_test_multiple "" "run program with breakpoint commands" {
kfail "gdb/1489" "run program with breakpoint commands (GDB died)" kfail "gdb/1489" "run program with breakpoint commands (GDB died)"
} }
} }
set timeout $prev_timeout

View File

@ -1149,6 +1149,7 @@ gdb_start
gdb_reinitialize_dir $srcdir/$subdir gdb_reinitialize_dir $srcdir/$subdir
gdb_load ${binfile} gdb_load ${binfile}
set prev_timeout $timeout
if [istarget "mips*tx39-*"] { if [istarget "mips*tx39-*"] {
set timeout 300 set timeout 300
} else { } else {
@ -1223,3 +1224,5 @@ funcargs_reload
localvars_in_indirect_call localvars_in_indirect_call
funcargs_reload funcargs_reload
test_stepping_over_trampolines test_stepping_over_trampolines
set timeout $prev_timeout

View File

@ -50,6 +50,7 @@ gdb_start
gdb_reinitialize_dir $srcdir/$subdir gdb_reinitialize_dir $srcdir/$subdir
gdb_load ${binfile} gdb_load ${binfile}
set prev_timeout $timeout
set timeout 30 set timeout 30
if { ! [ runto_main ] } then { if { ! [ runto_main ] } then {
@ -59,3 +60,4 @@ if { ! [ runto_main ] } then {
gdb_test "print a" ".1 = .0 .repeats \[0123456789\]+ times.." "print a very large data object" gdb_test "print a" ".1 = .0 .repeats \[0123456789\]+ times.." "print a very large data object"
set timeout $prev_timeout

View File

@ -202,8 +202,10 @@ if [runto inner] then {
} else { } else {
# We need to up this because this can be really slow on some boards. # We need to up this because this can be really slow on some boards.
# (malloc() is called as part of the test). # (malloc() is called as part of the test).
set timeout 60; set prev_timeout $timeout
set timeout 60
gdb_test {p/c array_index("abcdef",2)} " = 99 'c'" gdb_test {p/c array_index("abcdef",2)} " = 99 'c'"
set timeout $prev_timeout
} }
} }

View File

@ -20,11 +20,6 @@ if $tracelevel {
strace $tracelevel strace $tracelevel
} }
global message
global timeout
set timeout 200
gdb_exit gdb_exit
gdb_start gdb_start

View File

@ -626,7 +626,8 @@ if [runto_main] then {
# We need to up this because this can be really slow on some boards. # We need to up this because this can be really slow on some boards.
# (malloc() is called as part of the test). # (malloc() is called as part of the test).
set timeout 60; set prev_timeout $timeout
set timeout 60
gdb_test "ptype \"abc\"" "type = char \\\[4\\\]" gdb_test "ptype \"abc\"" "type = char \\\[4\\\]"
gdb_test "ptype {'a','b','c'}" "type = char \\\[3\\\]" gdb_test "ptype {'a','b','c'}" "type = char \\\[3\\\]"
@ -637,6 +638,8 @@ if [runto_main] then {
gdb_test "ptype {4,5,6}\[2\]" "type = int" gdb_test "ptype {4,5,6}\[2\]" "type = int"
gdb_test "ptype *&{4,5,6}\[1\]" "Attempt to take address of value not located in memory." gdb_test "ptype *&{4,5,6}\[1\]" "Attempt to take address of value not located in memory."
set timeout $prev_timeout
# Test ptype of user register # Test ptype of user register
gdb_test "ptype \$pc" "void \\(\\*\\)\\(\\)" "ptype \$pc" gdb_test "ptype \$pc" "void \\(\\*\\)\\(\\)" "ptype \$pc"
} }

View File

@ -116,5 +116,7 @@ gdb_start
gdb_reinitialize_dir $srcdir/$subdir gdb_reinitialize_dir $srcdir/$subdir
gdb_load ${binfile} gdb_load ${binfile}
set prev_timeout $timeout
set timeout 30 set timeout 30
restore_tests restore_tests
set timeout $prev_timeout

View File

@ -91,5 +91,7 @@ proc return_tests { } {
gdb_test "p tmp3" ".* = 5.*" "correct value returned double test (known problem with sparc solaris)" gdb_test "p tmp3" ".* = 5.*" "correct value returned double test (known problem with sparc solaris)"
} }
set prev_timeout $timeout
set timeout 30 set timeout 30
return_tests return_tests
set timeout $prev_timeout

View File

@ -374,7 +374,8 @@ v_long_member = 3,.*v_float_member = 4,.*v_double_member = 5.*\}" \
# We need to up this because this can be really slow on some boards. # We need to up this because this can be really slow on some boards.
# (malloc() is called as part of the test). # (malloc() is called as part of the test).
set timeout 60; set prev_timeout $timeout
set timeout 60
# Change the values # Change the values
test_set "set variable v_struct1 = {32, 33, 34, 35, 36, 37}" \ test_set "set variable v_struct1 = {32, 33, 34, 35, 36, 37}" \
@ -392,6 +393,8 @@ test_set "set variable v_struct1 = {'h', 1, 2, 3, 4.0, 5.0}" \
v_long_member = 3,.*v_float_member = 4,.*v_double_member = 5.*\\}" \ v_long_member = 3,.*v_float_member = 4,.*v_double_member = 5.*\\}" \
"set print structure #3" "set print structure #3"
set timeout $prev_timeout
# Test printing of enumeration bitfields. # Test printing of enumeration bitfields.
# GNU C supports them, some other compilers don't. # GNU C supports them, some other compilers don't.

View File

@ -83,6 +83,9 @@ gdb_test_multiple "break foo" "set pending breakpoint" {
} }
} }
set prev_timeout $timeout
set timeout 120
gdb_test "continue" ".*Breakpoint 2.*foo.*" "continue to foo" gdb_test "continue" ".*Breakpoint 2.*foo.*" "continue to foo"
gdb_test "watch g" "atchpoint 3: g" "set watchpoint on g" gdb_test "watch g" "atchpoint 3: g" "set watchpoint on g"
gdb_test "continue" ".*New value = 1.*" "continue to watchpoint hit" gdb_test "continue" ".*New value = 1.*" "continue to watchpoint hit"
@ -90,7 +93,4 @@ rerun_to_main
gdb_test "continue" ".*Breakpoint 2.*foo.*" "continue to foo again" gdb_test "continue" ".*Breakpoint 2.*foo.*" "continue to foo again"
gdb_test "continue" ".*New value = 1.*" "continue to watchpoint hit again" gdb_test "continue" ".*New value = 1.*" "continue to watchpoint hit again"
set timeout $prev_timeout

View File

@ -53,6 +53,7 @@ gdb_load $binfile
gdb_test "watch ival1" "" "" gdb_test "watch ival1" "" ""
gdb_test "watch ival3" "" "" gdb_test "watch ival3" "" ""
set prev_timeout $timeout
set timeout 600 set timeout 600
gdb_test "cont" "Continuing.*\[Ww\]atchpoint.*ival1.*Old value = -1.*New value = 0.*ival1 = count; ival2 = count;.*" "watchpoint hit, first time" gdb_test "cont" "Continuing.*\[Ww\]atchpoint.*ival1.*Old value = -1.*New value = 0.*ival1 = count; ival2 = count;.*" "watchpoint hit, first time"
@ -102,4 +103,4 @@ gdb_load $binfile
# Check that the hit count is reported correctly # Check that the hit count is reported correctly
gdb_test "info break" ".*watchpoint\[ \t\]+keep\[ \t\]+y\[ \t\]+ival3\r\n\[ \t]+breakpoint already hit 5 times.*" "Watchpoint hit count is 5" gdb_test "info break" ".*watchpoint\[ \t\]+keep\[ \t\]+y\[ \t\]+ival3\r\n\[ \t]+breakpoint already hit 5 times.*" "Watchpoint hit count is 5"
set timeout $prev_timeout

View File

@ -55,6 +55,7 @@ set horiz "\[^\n\r\]*"
# regexp for newline # regexp for newline
set nl "\[\r\n\]+" set nl "\[\r\n\]+"
set prev_timeout $timeout
set timeout 30 set timeout 30
send_gdb "help gcore\n" send_gdb "help gcore\n"
@ -174,3 +175,4 @@ gdb_test "info threads" ".* thread2 .*" \
gdb_test "info threads" ".*${nl}\\* ${horiz} thread2 .*" \ gdb_test "info threads" ".*${nl}\\* ${horiz} thread2 .*" \
"thread2 is current thread in corefile" "thread2 is current thread in corefile"
set timeout $prev_timeout