* top.c (quit_confirm): Warn that we will kill the program.

* gdb.threads/killed.exp, gdb.threads/manythreads.exp,
	gdb.threads/staticthreads.exp: Update exit query.
This commit is contained in:
Daniel Jacobowitz 2008-03-21 14:39:23 +00:00
parent bbeee7eaea
commit b21991b00c
6 changed files with 13 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2008-03-21 Daniel Jacobowitz <dan@codesourcery.com>
* top.c (quit_confirm): Warn that we will kill the program.
2008-03-19 Pedro Alves <pedro@codesourcery.com>
* inflow.c (terminal_ours_1): Guard access to

View File

@ -1,3 +1,8 @@
2008-03-21 Daniel Jacobowitz <dan@codesourcery.com>
* gdb.threads/killed.exp, gdb.threads/manythreads.exp,
gdb.threads/staticthreads.exp: Update exit query.
2008-03-07 Sandra Loosemore <sandra@codesourcery.com>
* lib/gdb.exp (gdb_load_cmd): Fix $args typo in timeout error message.

View File

@ -87,7 +87,7 @@ gdb_expect {
# Try to quit.
send_gdb "quit\n"
gdb_expect {
-re "The program is running. Exit anyway\\? \\(y or n\\) $" {
-re "The program is running. Quit anyway \\(and kill it\\)\\? \\(y or n\\) $" {
send_gdb "y\n"
exp_continue
}

View File

@ -133,7 +133,7 @@ gdb_test_multiple "" "stop threads 2" {
}
gdb_test_multiple "quit" "GDB exits after stopping multithreaded program" {
-re "The program is running. Exit anyway\\? \\(y or n\\) $" {
-re "The program is running. Quit anyway \\(and kill it\\)\\? \\(y or n\\) $" {
send_gdb "y\n"
exp_continue
}

View File

@ -91,7 +91,7 @@ gdb_test_multiple "info threads" "$test" {
set test "GDB exits with static thread program"
gdb_test_multiple "quit" "$test" {
-re "The program is running. Exit anyway\\? \\(y or n\\) $" {
-re "The program is running. Quit anyway \\(and kill it\\)\\? \\(y or n\\) $" {
send_gdb "y\n"
exp_continue
}

View File

@ -1253,7 +1253,7 @@ quit_confirm (void)
else if (attach_flag)
s = "The program is running. Quit anyway (and detach it)? ";
else
s = "The program is running. Exit anyway? ";
s = "The program is running. Quit anyway (and kill it)? ";
if (!query ("%s", s))
return 0;