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/] [chng-syms.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 2004, 2007, 2008 Free Software Foundation, Inc.
# Copyright 2004, 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
# Author: Paul N. Hilfinger (Hilfinger@gnat.com)
# Author: Paul N. Hilfinger (Hilfinger@gnat.com)
# Test that GDB cleans up properly after errors that result when a
# Test that GDB cleans up properly after errors that result when a
# breakpoint is reset.
# breakpoint is reset.
if $tracelevel then {
if $tracelevel then {
        strace $tracelevel
        strace $tracelevel
}
}
set prms_id 0
set prms_id 0
set bug_id 0
set bug_id 0
# IDT/SIM apparently doesn't have enough file descriptors to allow the
# IDT/SIM apparently doesn't have enough file descriptors to allow the
# problem checked by this test to occur.
# problem checked by this test to occur.
if [istarget "mips-idt-*"] {
if [istarget "mips-idt-*"] {
    return 0;
    return 0;
}
}
set testfile "chng-syms"
set testfile "chng-syms"
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=-DVARIABLE=var1}] != "" } {
if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DVARIABLE=var1}] != "" } {
    untested chng-syms.exp
    untested chng-syms.exp
    return -1
    return -1
}
}
set oldtimeout $timeout
set oldtimeout $timeout
set timeout 10
set timeout 10
verbose "Timeout is now 10 seconds" 2
verbose "Timeout is now 10 seconds" 2
proc expect_to_stop_here { ident } {
proc expect_to_stop_here { ident } {
    global gdb_prompt
    global gdb_prompt
    global decimal
    global decimal
    # the "at foo.c:36" output we get with -g.
    # the "at foo.c:36" output we get with -g.
    # the "in func" output we get without -g.
    # the "in func" output we get without -g.
    gdb_expect {
    gdb_expect {
        -re "Breakpoint \[0-9\]*, stop_here .*$gdb_prompt $" {
        -re "Breakpoint \[0-9\]*, stop_here .*$gdb_prompt $" {
            return 1
            return 1
        }
        }
        -re "$gdb_prompt $" {
        -re "$gdb_prompt $" {
            fail "running to stop_here $ident"
            fail "running to stop_here $ident"
            return 0
            return 0
        }
        }
        timeout {
        timeout {
            fail "running to stop_here $ident (timeout)"
            fail "running to stop_here $ident (timeout)"
            return 0
            return 0
        }
        }
    }
    }
    return 1
    return 1
}
}
gdb_exit
gdb_exit
gdb_start
gdb_start
gdb_reinitialize_dir $srcdir/$subdir
gdb_reinitialize_dir $srcdir/$subdir
gdb_load ${binfile}
gdb_load ${binfile}
gdb_test "break stop_here if (var1 == 42)" \
gdb_test "break stop_here if (var1 == 42)" \
    "Breakpoint.*at.* file .*$srcfile, line.*" \
    "Breakpoint.*at.* file .*$srcfile, line.*" \
    "setting conditional breakpoint on function"
    "setting conditional breakpoint on function"
gdb_run_cmd
gdb_run_cmd
expect_to_stop_here "first time"
expect_to_stop_here "first time"
gdb_continue_to_end "breakpoint first time through"
gdb_continue_to_end "breakpoint first time through"
# Now we recompile the executable, but without a variable named "var1", first
# Now we recompile the executable, but without a variable named "var1", first
# waiting to insure that even on fast machines, the file modification times
# waiting to insure that even on fast machines, the file modification times
# are distinct. This will force GDB to reload the file on the
# are distinct. This will force GDB to reload the file on the
# next "run" command, causing an error when GDB tries to tries to reset
# next "run" command, causing an error when GDB tries to tries to reset
# the breakpoint.
# the breakpoint.
sleep 2
sleep 2
if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DVARIABLE=var2}] != "" } {
if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DVARIABLE=var2}] != "" } {
# Complication: Since GDB generally holds an open file descriptor on the
# Complication: Since GDB generally holds an open file descriptor on the
# executable at this point, there are some systems in which the
# executable at this point, there are some systems in which the
# re-compilation will fail. In such cases, we'll consider the test
# re-compilation will fail. In such cases, we'll consider the test
# (vacuously) passed providing that re-running it succeeds as before.
# (vacuously) passed providing that re-running it succeeds as before.
    gdb_run_cmd
    gdb_run_cmd
    expect_to_stop_here "after re-compile fails"
    expect_to_stop_here "after re-compile fails"
    gdb_continue_to_end "after re-compile fails"
    gdb_continue_to_end "after re-compile fails"
} else {
} else {
    gdb_run_cmd
    gdb_run_cmd
    gdb_expect {
    gdb_expect {
        -re ".*No symbol .var1..*Program exited normally.*$gdb_prompt $" {
        -re ".*No symbol .var1..*Program exited normally.*$gdb_prompt $" {
            pass "running with invalidated bpt condition after executable changes"
            pass "running with invalidated bpt condition after executable changes"
        }
        }
        -re "No symbol .var1..*Breakpoint .*,( 0x.* in)? (\[^ \]*)exit .*$gdb_prompt $" {
        -re "No symbol .var1..*Breakpoint .*,( 0x.* in)? (\[^ \]*)exit .*$gdb_prompt $" {
            pass "running with invalidated bpt condition after executable changes"
            pass "running with invalidated bpt condition after executable changes"
        }
        }
        -re "$gdb_prompt $" {
        -re "$gdb_prompt $" {
            fail "running with invalidated bpt condition after executable changes"
            fail "running with invalidated bpt condition after executable changes"
        }
        }
        timeout {
        timeout {
            fail "(timeout) running with invalidated bpt condition after executable changes"
            fail "(timeout) running with invalidated bpt condition after executable changes"
        }
        }
    }
    }
}
}
set timeout $oldtimeout
set timeout $oldtimeout
verbose "Timeout is now $timeout seconds" 2
verbose "Timeout is now $timeout seconds" 2
return 0
return 0
 
 

powered by: WebSVN 2.1.0

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