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.hp/] [gdb.aCC/] [watch-cmd.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 (C) 1998, 2007, 2008 Free Software Foundation, Inc.
# Copyright (C) 1998, 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
if $tracelevel then {
if $tracelevel then {
    strace $tracelevel
    strace $tracelevel
}
}
#
#
# test special commands
# test special commands
#
#
set prms_id 0
set prms_id 0
set bug_id 0
set bug_id 0
if { [skip_hp_tests] } then { continue }
if { [skip_hp_tests] } then { continue }
set testfile "run"
set testfile "run"
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 additional_flags=-DFAKEARGV}] != "" } {
if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
     untested watch-cmd.exp
     untested watch-cmd.exp
     return -1
     return -1
}
}
if [get_compiler_info ${binfile}] {
if [get_compiler_info ${binfile}] {
    return -1;
    return -1;
}
}
if { $gcc_compiled } then { continue }
if { $gcc_compiled } then { continue }
gdb_exit
gdb_exit
gdb_start
gdb_start
delete_breakpoints
delete_breakpoints
gdb_reinitialize_dir $srcdir/$subdir
gdb_reinitialize_dir $srcdir/$subdir
gdb_load ${binfile}
gdb_load ${binfile}
proc watchpoint_command_test {} {
proc watchpoint_command_test {} {
    global gdb_prompt
    global gdb_prompt
    if [target_info exists noargs] {
    if [target_info exists noargs] {
        verbose "Skipping watchpoint_command_test because of noargs."
        verbose "Skipping watchpoint_command_test because of noargs."
        return
        return
    }
    }
    if { ![runto factorial] } then { gdb_suppress_tests }
    if { ![runto factorial] } then { gdb_suppress_tests }
    # Don't depend upon argument passing, since most simulators don't currently
    # Don't depend upon argument passing, since most simulators don't currently
    # support it.  Bash value variable to be what we want.
    # support it.  Bash value variable to be what we want.
    gdb_test "p value=6" "" "set value to 6 in watchpoint_command_test"
    gdb_test "p value=6" "" "set value to 6 in watchpoint_command_test"
    delete_breakpoints
    delete_breakpoints
    # Verify that we can create a watchpoint, and give it a commands
    # Verify that we can create a watchpoint, and give it a commands
    # list that continues the inferior.  We set the watchpoint on a
    # list that continues the inferior.  We set the watchpoint on a
    # local variable, too, so that it self-deletes when the watched
    # local variable, too, so that it self-deletes when the watched
    # data goes out of scope.
    # data goes out of scope.
    #
    #
    # What should happen is: Each time the watchpoint triggers, it
    # What should happen is: Each time the watchpoint triggers, it
    # continues the inferior.  Eventually, the watchpoint will self-
    # continues the inferior.  Eventually, the watchpoint will self-
    # delete, when the watched variable is out of scope.  But by that
    # delete, when the watched variable is out of scope.  But by that
    # time, the inferior should have exited.  GDB shouldn't crash or
    # time, the inferior should have exited.  GDB shouldn't crash or
    # anything untoward as a result of this.
    # anything untoward as a result of this.
    #
    #
    send_gdb "watch local_var\n"
    send_gdb "watch local_var\n"
    gdb_expect {
    gdb_expect {
      -re ".*\[Ww\]atchpoint (\[0-9\]*): local_var.*$gdb_prompt $"\
      -re ".*\[Ww\]atchpoint (\[0-9\]*): local_var.*$gdb_prompt $"\
              { pass "watch local_var"
              { pass "watch local_var"
                set wp_id $expect_out(1,string)
                set wp_id $expect_out(1,string)
                send_gdb "commands $wp_id\n"
                send_gdb "commands $wp_id\n"
                gdb_expect {
                gdb_expect {
                  -re "Type commands for when breakpoint $wp_id is hit, one per line.*>"\
                  -re "Type commands for when breakpoint $wp_id is hit, one per line.*>"\
                          { pass "begin commands on watch"}
                          { pass "begin commands on watch"}
                  -re "$gdb_prompt $"\
                  -re "$gdb_prompt $"\
                          {fail "begin commands on watch"}
                          {fail "begin commands on watch"}
                  timeout {fail "(timeout) begin commands on watch"}
                  timeout {fail "(timeout) begin commands on watch"}
                }
                }
              }
              }
    -re "$gdb_prompt $"\
    -re "$gdb_prompt $"\
              {fail "watch local_var"}
              {fail "watch local_var"}
      timeout {fail "(timeout) watch local_var"}
      timeout {fail "(timeout) watch local_var"}
    }
    }
#    set wp_id $expect_out(1,string)
#    set wp_id $expect_out(1,string)
#    send_gdb "commands $wp_id\n"
#    send_gdb "commands $wp_id\n"
#    gdb_expect {
#    gdb_expect {
#      -re "Type commands for when breakpoint $wp_id is hit, one per line.*>"\
#      -re "Type commands for when breakpoint $wp_id is hit, one per line.*>"\
#              {pass "begin commands on watch"}
#              {pass "begin commands on watch"}
#      -re "$gdb_prompt $"\
#      -re "$gdb_prompt $"\
#              {fail "begin commands on watch"}
#              {fail "begin commands on watch"}
#      timeout {fail "(timeout) begin commands on watch"}
#      timeout {fail "(timeout) begin commands on watch"}
#    }
#    }
    send_gdb "print value\n"
    send_gdb "print value\n"
    gdb_expect {
    gdb_expect {
      -re ">"\
      -re ">"\
              {pass "add print command to watch"}
              {pass "add print command to watch"}
      -re "$gdb_prompt $"\
      -re "$gdb_prompt $"\
              {fail "add print command to watch"}
              {fail "add print command to watch"}
      timeout {fail "(timeout) add print command to watch"}
      timeout {fail "(timeout) add print command to watch"}
    }
    }
    send_gdb "continue\n"
    send_gdb "continue\n"
    gdb_expect {
    gdb_expect {
      -re ">"\
      -re ">"\
              {pass "add continue command to watch"}
              {pass "add continue command to watch"}
      -re "$gdb_prompt $"\
      -re "$gdb_prompt $"\
              {fail "add continue command to watch"}
              {fail "add continue command to watch"}
      timeout {fail "(timeout) add continue command to watch"}
      timeout {fail "(timeout) add continue command to watch"}
    }
    }
    send_gdb "end\n"
    send_gdb "end\n"
    gdb_expect {
    gdb_expect {
      -re "$gdb_prompt $"\
      -re "$gdb_prompt $"\
              {pass "begin commands on watch"}
              {pass "begin commands on watch"}
      timeout {fail "(timeout) begin commands on watch"}
      timeout {fail "(timeout) begin commands on watch"}
    }
    }
    send_gdb "continue\n"
    send_gdb "continue\n"
    gdb_expect {
    gdb_expect {
      -re "Continuing.*\[Ww\]atchpoint $wp_id deleted because the program has left the block in.*which its expression is valid.*in main.*$gdb_prompt $"\
      -re "Continuing.*\[Ww\]atchpoint $wp_id deleted because the program has left the block in.*which its expression is valid.*in main.*$gdb_prompt $"\
              {pass "continue with watch"}
              {pass "continue with watch"}
      -re "$gdb_prompt $"\
      -re "$gdb_prompt $"\
              {fail "continue with watch"}
              {fail "continue with watch"}
      timeout {fail "(timeout) continue with watch"}
      timeout {fail "(timeout) continue with watch"}
    }
    }
    send_gdb "continue\n"
    send_gdb "continue\n"
    gdb_expect {
    gdb_expect {
      -re "Continuing.*$gdb_prompt $"\
      -re "Continuing.*$gdb_prompt $"\
              {pass "continue until exit"}
              {pass "continue until exit"}
      -re "$gdb_prompt $"\
      -re "$gdb_prompt $"\
              {fail "continue until exit"}
              {fail "continue until exit"}
      timeout {fail "(timeout) continue until exit"}
      timeout {fail "(timeout) continue until exit"}
    }
    }
}
}
watchpoint_command_test
watchpoint_command_test
 
 

powered by: WebSVN 2.1.0

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