OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [gdb-5.0/] [gdb/] [testsuite/] [config/] [udi.exp] - Diff between revs 107 and 1765

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

Rev 107 Rev 1765
# Test Framework Driver for GDB driving Universal Debug Interface on 29K
# Test Framework Driver for GDB driving Universal Debug Interface on 29K
#   Copyright 1988, 1990, 1991, 1992, 1993, 1994, 1997 Free Software Foundation, Inc.
#   Copyright 1988, 1990, 1991, 1992, 1993, 1994, 1997 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 2 of the License, or
# the Free Software Foundation; either version 2 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, write to the Free Software
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# Please email any bugs, comments, and/or additions to this file to:
# Please email any bugs, comments, and/or additions to this file to:
# DejaGnu@cygnus.com
# DejaGnu@cygnus.com
# This file was written by Rob Savoye. (rob@cygnus.com)
# This file was written by Rob Savoye. (rob@cygnus.com)
load_lib gdb.exp
load_lib gdb.exp
#
#
# gdb_target_udi
# gdb_target_udi
# Set gdb to the desired UDI target
# Set gdb to the desired UDI target
#
#
proc gdb_target_udi { } {
proc gdb_target_udi { } {
    global gdb_prompt
    global gdb_prompt
    global verbose
    global verbose
    global exit_status
    global exit_status
    set targetname [target_info mondfe,name];
    set targetname [target_info mondfe,name];
    # set targets hostname
    # set targets hostname
    send_gdb "target udi $targetname\n"
    send_gdb "target udi $targetname\n"
    set timeout 60
    set timeout 60
    verbose "Timeout is now $timeout seconds" 2
    verbose "Timeout is now $timeout seconds" 2
    gdb_expect {
    gdb_expect {
        -re "target udi $targetname\[\r\n\]+" {
        -re "target udi $targetname\[\r\n\]+" {
            exp_continue
            exp_continue
        }
        }
        -re "TIP UDI 1.2 Conformant.*$gdb_prompt $"     {
        -re "TIP UDI 1.2 Conformant.*$gdb_prompt $"     {
            verbose "Set target to $targetname"
            verbose "Set target to $targetname"
        }
        }
        -re "TIP-ipc WARNING,.*failed:" {
        -re "TIP-ipc WARNING,.*failed:" {
            warning "$expect_out(buffer)"
            warning "$expect_out(buffer)"
        }
        }
        -re "TIP-ipc ERROR,.*failed:" {
        -re "TIP-ipc ERROR,.*failed:" {
            perror "$expect_out(buffer)"
            perror "$expect_out(buffer)"
        }
        }
        -re "A program is being debugged already.  Kill it\? \(y or n\)" {
        -re "A program is being debugged already.  Kill it\? \(y or n\)" {
            send "y\n"
            send "y\n"
            exp_continue
            exp_continue
        }
        }
        timeout {
        timeout {
            perror "Couldn't set target for UDI."
            perror "Couldn't set target for UDI."
            cleanup
            cleanup
            exit $exit_status
            exit $exit_status
        }
        }
    }
    }
    set timeout 10
    set timeout 10
    verbose "Timeout is now $timeout seconds" 2
    verbose "Timeout is now $timeout seconds" 2
}
}
#
#
# gdb_load -- load a file into the debugger.
# gdb_load -- load a file into the debugger.
#             return a -1 if anything goes wrong.
#             return a -1 if anything goes wrong.
#
#
proc gdb_load { arg } {
proc gdb_load { arg } {
    global verbose
    global verbose
    global loadpath
    global loadpath
    global loadfile
    global loadfile
    global GDB
    global GDB
    global gdb_prompt
    global gdb_prompt
    if [gdb_file_cmd $arg] {
    if [gdb_file_cmd $arg] {
        return -1
        return -1
    }
    }
    gdb_target_udi
    gdb_target_udi
}
}
#
#
# gdb_start -- start GDB running. This assumes that there the
# gdb_start -- start GDB running. This assumes that there the
#              UDICONF enviroment variable is set.
#              UDICONF enviroment variable is set.
#
#
proc gdb_start { } {
proc gdb_start { } {
    global env;
    global env;
    set env(UDICONF) [target_info mondfe,udi_soc];
    set env(UDICONF) [target_info mondfe,udi_soc];
    default_gdb_start
    default_gdb_start
    verbose "Setting up target, Please wait..."
    verbose "Setting up target, Please wait..."
    gdb_target_udi
    gdb_target_udi
}
}
#
#
# gdb_exit -- exit gdb
# gdb_exit -- exit gdb
#
#
proc gdb_exit { } {
proc gdb_exit { } {
    catch default_gdb_exit
    catch default_gdb_exit
    set in [open [concat "|ls -F"] r]
    set in [open [concat "|ls -F"] r]
    while {[gets $in line]>-1} {
    while {[gets $in line]>-1} {
        if [regexp "=$" $line] then {
        if [regexp "=$" $line] then {
            set line [string trimright $line "="]
            set line [string trimright $line "="]
            verbose "Removing the $line named socket"
            verbose "Removing the $line named socket"
            exec rm -f $line
            exec rm -f $line
        }
        }
    }
    }
    close $in
    close $in
}
}
 
 

powered by: WebSVN 2.1.0

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