2013-01-01 07:33:28 +01:00
|
|
|
# Copyright 2003-2013 Free Software Foundation, Inc.
|
2003-06-25 00:04:06 +02:00
|
|
|
|
|
|
|
# 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
|
2007-08-23 20:14:19 +02:00
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
2003-06-25 00:04:06 +02:00
|
|
|
# (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
|
2007-08-23 20:14:19 +02:00
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2003-06-25 00:04:06 +02:00
|
|
|
|
|
|
|
# This is a test that verifies that GDB is able to "run" when the name
|
|
|
|
# of the executable file contains a '!'.
|
|
|
|
|
|
|
|
set testfile "args"
|
|
|
|
set srcfile ${testfile}.c
|
|
|
|
set binfile ${objdir}/${subdir}/bang!
|
|
|
|
|
2006-03-07 16:23:33 +01:00
|
|
|
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug nowarnings}] != "" } {
|
2006-08-10 07:27:22 +02:00
|
|
|
untested bang.exp
|
|
|
|
return -1
|
2003-06-25 00:04:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
gdb_exit
|
|
|
|
gdb_start
|
|
|
|
gdb_reinitialize_dir $srcdir/$subdir
|
|
|
|
gdb_load ${binfile}
|
|
|
|
|
|
|
|
# Verify that we can run the program and that it terminates normally.
|
|
|
|
|
2004-02-02 22:30:02 +01:00
|
|
|
gdb_run_cmd
|
|
|
|
gdb_expect {
|
2011-03-07 17:03:04 +01:00
|
|
|
-re ".*$inferior_exited_re normally.*$gdb_prompt $" {
|
2004-02-02 22:30:02 +01:00
|
|
|
pass "run program"
|
|
|
|
}
|
|
|
|
timeout {
|
|
|
|
fail "run program (timeout)"
|
|
|
|
}
|
|
|
|
}
|