* 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

@@ -202,8 +202,10 @@ if [runto inner] then {
} else {
# We need to up this because this can be really slow on some boards.
# (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'"
set timeout $prev_timeout
}
}