2011-01-01 16:34:07 +01:00
|
|
|
# Copyright 2003, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
|
2003-01-14 22:03:44 +01: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-01-14 22:03:44 +01: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-01-14 22:03:44 +01:00
|
|
|
|
|
|
|
# This is a test for the gdb invocation option --args.
|
|
|
|
|
|
|
|
if $tracelevel then {
|
|
|
|
strace $tracelevel
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
global GDBFLAGS
|
|
|
|
|
2003-01-30 00:25:43 +01:00
|
|
|
# Skip test if target does not support argument passing.
|
|
|
|
if [target_info exists noargs] {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2003-01-14 22:03:44 +01:00
|
|
|
set testfile "args"
|
|
|
|
set srcfile ${testfile}.c
|
|
|
|
set binfile ${objdir}/${subdir}/${testfile}
|
|
|
|
|
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 args.exp
|
|
|
|
return -1
|
2003-01-14 22:03:44 +01:00
|
|
|
}
|
|
|
|
|
2006-09-15 22:06:42 +02:00
|
|
|
proc args_test { name arglist } {
|
|
|
|
global srcdir
|
|
|
|
global subdir
|
|
|
|
global binfile
|
|
|
|
global hex
|
|
|
|
global decimal
|
|
|
|
|
|
|
|
gdb_exit
|
|
|
|
gdb_start
|
|
|
|
gdb_reinitialize_dir $srcdir/$subdir
|
|
|
|
|
|
|
|
# No loading needs to be done when the target is `exec'. Some targets
|
|
|
|
# require that the program be loaded, however, and it doesn't hurt
|
|
|
|
# for `exec'.
|
|
|
|
gdb_load $binfile
|
|
|
|
|
|
|
|
runto_main
|
|
|
|
gdb_breakpoint [gdb_get_line_number "set breakpoint here"]
|
|
|
|
gdb_continue_to_breakpoint "breakpoint for $name"
|
|
|
|
|
|
|
|
set expected_len [expr 1 + [llength $arglist]]
|
|
|
|
gdb_test "print argc" "\\\$$decimal = $expected_len" "argc for $name"
|
|
|
|
|
|
|
|
set i 1
|
|
|
|
foreach arg $arglist {
|
|
|
|
gdb_test "print argv\[$i\]" "\\\$$decimal = $hex \"$arg\"" \
|
|
|
|
"argv\[$i\] for $name"
|
|
|
|
set i [expr $i + 1]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-01-14 22:03:44 +01:00
|
|
|
#
|
|
|
|
# Test that the --args are processed correctly.
|
|
|
|
#
|
2003-01-16 02:13:18 +01:00
|
|
|
set old_gdbflags $GDBFLAGS
|
2008-11-11 02:23:34 +01:00
|
|
|
|
|
|
|
set GDBFLAGS "$old_gdbflags --args $binfile 1 3"
|
2006-09-15 22:06:42 +02:00
|
|
|
args_test basic {{1} {3}}
|
2003-01-14 22:03:44 +01:00
|
|
|
|
|
|
|
#
|
|
|
|
# Test that the --args are processed correctly even if one of them is empty.
|
2006-09-15 22:06:42 +02:00
|
|
|
# The syntax needed is a little peculiar; DejaGNU treats the arguments as a
|
|
|
|
# list and expands them itself, since no shell redirection is involved.
|
2003-01-14 22:03:44 +01:00
|
|
|
#
|
2008-11-11 02:23:34 +01:00
|
|
|
set GDBFLAGS "$old_gdbflags --args $binfile 1 {} 3"
|
2006-09-15 22:06:42 +02:00
|
|
|
args_test "one empty" {{1} {} {3}}
|
2003-01-14 22:03:44 +01:00
|
|
|
|
|
|
|
#
|
|
|
|
# try with 2 empty args
|
|
|
|
#
|
2008-11-11 02:23:34 +01:00
|
|
|
set GDBFLAGS "$old_gdbflags --args $binfile 1 {} {} 3"
|
2006-09-15 22:06:42 +02:00
|
|
|
args_test "two empty" {{1} {} {} 3}
|
|
|
|
|
|
|
|
# Try with arguments containing literal single quotes.
|
|
|
|
|
2008-11-11 02:23:34 +01:00
|
|
|
set GDBFLAGS "$old_gdbflags --args $binfile 1 '' 3"
|
2008-02-27 16:46:46 +01:00
|
|
|
args_test "one empty (with single quotes)" {{1} {''} {3}}
|
2006-09-15 22:06:42 +02:00
|
|
|
|
2008-11-11 02:23:34 +01:00
|
|
|
set GDBFLAGS "$old_gdbflags --args $binfile 1 '' '' 3"
|
2008-02-27 16:46:46 +01:00
|
|
|
args_test "two empty (with single quotes)" {{1} {''} {''} {3}}
|
2003-01-14 22:03:44 +01:00
|
|
|
|
2008-10-30 11:07:16 +01:00
|
|
|
# try with arguments containing literal newlines.
|
|
|
|
|
|
|
|
set GDBFLAGS "-nx --args $binfile 1 {\n} 3"
|
|
|
|
args_test "one newline" {{1} {\\n} {3}}
|
|
|
|
|
|
|
|
set GDBFLAGS "-nx --args $binfile 1 {\n} {\n} 3"
|
|
|
|
args_test "two newlines" {{1} {\\n} {\\n} {3}}
|
|
|
|
|
2003-01-16 02:13:18 +01:00
|
|
|
set GDBFLAGS $old_gdbflags
|