OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gdb/] [gdb-6.8/] [gdb-6.8.openrisc-2.1/] [gdb/] [testsuite/] [gdb.base/] [args.exp] - Diff between revs 24 and 33

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 24 Rev 33
# Copyright 2003, 2007, 2008 Free Software Foundation, Inc.
# Copyright 2003, 2007, 2008 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# 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
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
# (at your option) any later version.
#
#
# This program is distributed in the hope that it will be useful,
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# GNU General Public License for more details.
#
#
# You should have received a copy of the GNU General Public License
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see .
# along with this program.  If not, see .
# Please email any bugs, comments, and/or additions to this file to:
# Please email any bugs, comments, and/or additions to this file to:
# bug-gdb@prep.ai.mit.edu
# bug-gdb@prep.ai.mit.edu
# This is a test for the gdb invocation option --args.
# This is a test for the gdb invocation option --args.
if $tracelevel then {
if $tracelevel then {
    strace $tracelevel
    strace $tracelevel
}
}
global GDBFLAGS
global GDBFLAGS
# Skip test if target does not support argument passing.
# Skip test if target does not support argument passing.
if [target_info exists noargs] {
if [target_info exists noargs] {
    return;
    return;
}
}
set testfile "args"
set testfile "args"
set srcfile ${testfile}.c
set srcfile ${testfile}.c
set binfile ${objdir}/${subdir}/${testfile}
set binfile ${objdir}/${subdir}/${testfile}
if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug nowarnings}] != "" } {
if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug nowarnings}] != "" } {
    untested args.exp
    untested args.exp
    return -1
    return -1
}
}
proc args_test { name arglist } {
proc args_test { name arglist } {
    global srcdir
    global srcdir
    global subdir
    global subdir
    global binfile
    global binfile
    global hex
    global hex
    global decimal
    global decimal
    gdb_exit
    gdb_exit
    gdb_start
    gdb_start
    gdb_reinitialize_dir $srcdir/$subdir
    gdb_reinitialize_dir $srcdir/$subdir
    # No loading needs to be done when the target is `exec'.  Some targets
    # 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
    # require that the program be loaded, however, and it doesn't hurt
    # for `exec'.
    # for `exec'.
    gdb_load $binfile
    gdb_load $binfile
    runto_main
    runto_main
    gdb_breakpoint [gdb_get_line_number "set breakpoint here"]
    gdb_breakpoint [gdb_get_line_number "set breakpoint here"]
    gdb_continue_to_breakpoint "breakpoint for $name"
    gdb_continue_to_breakpoint "breakpoint for $name"
    set expected_len [expr 1 + [llength $arglist]]
    set expected_len [expr 1 + [llength $arglist]]
    gdb_test "print argc" "\\\$$decimal = $expected_len" "argc for $name"
    gdb_test "print argc" "\\\$$decimal = $expected_len" "argc for $name"
    set i 1
    set i 1
    foreach arg $arglist {
    foreach arg $arglist {
        gdb_test "print argv\[$i\]" "\\\$$decimal = $hex \"$arg\"" \
        gdb_test "print argv\[$i\]" "\\\$$decimal = $hex \"$arg\"" \
            "argv\[$i\] for $name"
            "argv\[$i\] for $name"
        set i [expr $i + 1]
        set i [expr $i + 1]
    }
    }
}
}
#
#
# Test that the --args are processed correctly.
# Test that the --args are processed correctly.
#
#
set old_gdbflags $GDBFLAGS
set old_gdbflags $GDBFLAGS
set GDBFLAGS "--args $binfile 1 3"
set GDBFLAGS "--args $binfile 1 3"
args_test basic {{1} {3}}
args_test basic {{1} {3}}
#
#
# Test that the --args are processed correctly even if one of them is empty.
# Test that the --args are processed correctly even if one of them is empty.
# The syntax needed is a little peculiar; DejaGNU treats the arguments as a
# The syntax needed is a little peculiar; DejaGNU treats the arguments as a
# list and expands them itself, since no shell redirection is involved.
# list and expands them itself, since no shell redirection is involved.
#
#
set GDBFLAGS "--args $binfile 1 {} 3"
set GDBFLAGS "--args $binfile 1 {} 3"
args_test "one empty" {{1} {} {3}}
args_test "one empty" {{1} {} {3}}
#
#
# try with 2 empty args
# try with 2 empty args
#
#
set GDBFLAGS "--args $binfile 1 {} {} 3"
set GDBFLAGS "--args $binfile 1 {} {} 3"
args_test "two empty" {{1} {} {} 3}
args_test "two empty" {{1} {} {} 3}
# Try with arguments containing literal single quotes.
# Try with arguments containing literal single quotes.
set GDBFLAGS "--args $binfile 1 '' 3"
set GDBFLAGS "--args $binfile 1 '' 3"
args_test "one empty" {{1} {''} {3}}
args_test "one empty" {{1} {''} {3}}
set GDBFLAGS "--args $binfile 1 '' '' 3"
set GDBFLAGS "--args $binfile 1 '' '' 3"
args_test "two empty" {{1} {''} {''} {3}}
args_test "two empty" {{1} {''} {''} {3}}
set GDBFLAGS $old_gdbflags
set GDBFLAGS $old_gdbflags
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.