38095c27fb
Some remote stubs do not have a proper exit() function implementation. gdb.base/bang.exp was failing on those targets due to timeout. With this patch bang.exp uses already defined library procedures to handle this situation gracefully without breaking native targets. Tested with x86_64 (unix, native-gdbserver) and with arc-*-elf32. gdb/testsuite/ChangeLog: 2013-10-25 Anton Kolesov <Anton.Kolesov@synopsys.com> (tiny change) * gdb.base/bang.exp: Use gdb_continue_to_end to properly support remote stubs where exit() behaviour is unreliable.
30 lines
1 KiB
Text
30 lines
1 KiB
Text
# Copyright 2003-2013 Free Software Foundation, Inc.
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
# This is a test that verifies that GDB is able to "run" when the name
|
|
# of the executable file contains a '!'.
|
|
|
|
standard_testfile args.c
|
|
|
|
if {[prepare_for_testing $testfile.exp ${testfile}! $srcfile \
|
|
{debug nowarnings}]} {
|
|
untested bang.exp
|
|
return -1
|
|
}
|
|
|
|
# Verify that we can run the program and that it terminates normally.
|
|
|
|
runto_main
|
|
gdb_continue_to_end "" continue 1
|