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

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gdb-6.8/] [pre-binutils-2.20.1-sync/] [gdb/] [testsuite/] [gdb.cp/] [formatted-ref.exp] - Diff between revs 24 and 157

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

Rev 24 Rev 157
# Copyright 2007, 2008 Free Software Foundation, Inc.
# Copyright 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 .
# Author: P. N. Hilfinger, AdaCore, Inc.
# Author: P. N. Hilfinger, AdaCore, Inc.
# This test checks the behavior of formatted print when applied to a
# This test checks the behavior of formatted print when applied to a
# reference value.  The intended behavior is that a formatted print of
# reference value.  The intended behavior is that a formatted print of
# such a value should display the same value as a plain print,
# such a value should display the same value as a plain print,
# modulo format, of course.  Older versions of GDB would instead print
# modulo format, of course.  Older versions of GDB would instead print
# the reference's address value itself when doing a formatted print,
# the reference's address value itself when doing a formatted print,
# rather than printing both that and the dereferenced value.  We also
# rather than printing both that and the dereferenced value.  We also
# check that the (non-standard) expression &(&x), where x is of type T&,
# check that the (non-standard) expression &(&x), where x is of type T&,
# yields an appropriate value.
# yields an appropriate value.
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
if { [skip_cplus_tests] } { continue }
if { [skip_cplus_tests] } { continue }
set testfile "formatted-ref"
set testfile "formatted-ref"
set srcfile ${testfile}.cc
set srcfile ${testfile}.cc
set binfile ${objdir}/${subdir}/${testfile}
set binfile ${objdir}/${subdir}/${testfile}
if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug c++}] != "" } {
if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug c++}] != "" } {
     untested formatted-ref.exp
     untested formatted-ref.exp
     return -1
     return -1
}
}
proc get_address { var } {
proc get_address { var } {
    global expect_out
    global expect_out
    global gdb_prompt
    global gdb_prompt
    send_gdb "print &$var\n"
    send_gdb "print &$var\n"
    gdb_expect {
    gdb_expect {
        -re "\\$\[0-9\]+ = \\(.*\\) (0x\[0-9a-f\]+).*$gdb_prompt $" {
        -re "\\$\[0-9\]+ = \\(.*\\) (0x\[0-9a-f\]+).*$gdb_prompt $" {
            return $expect_out(1,string)
            return $expect_out(1,string)
        }
        }
        timeout {
        timeout {
            perror "couldn't find address of $var"
            perror "couldn't find address of $var"
            return ""
            return ""
        }
        }
    }
    }
}
}
proc test_p_x { var type val addr } {
proc test_p_x { var type val addr } {
    global gdb_prompt
    global gdb_prompt
    set test "print/x $var"
    set test "print/x $var"
    gdb_test_multiple $test $test {
    gdb_test_multiple $test $test {
        -re "\\$\[0-9\]+ = \\([string_to_regexp $type]\\) @0x\[a-f0-9\]+: [string_to_regexp $val].*$gdb_prompt $" {
        -re "\\$\[0-9\]+ = \\([string_to_regexp $type]\\) @0x\[a-f0-9\]+: [string_to_regexp $val].*$gdb_prompt $" {
            pass $test
            pass $test
        }
        }
        -re "\\$\[0-9\]+ = $addr.*$gdb_prompt $" {
        -re "\\$\[0-9\]+ = $addr.*$gdb_prompt $" {
            fail "$test (prints just address)"
            fail "$test (prints just address)"
        }
        }
        -re "\\$\[0-9\]+ = 0x\[a-f0-9\]+.*$gdb_prompt $" {
        -re "\\$\[0-9\]+ = 0x\[a-f0-9\]+.*$gdb_prompt $" {
            fail "$test (prints unexpected address)"
            fail "$test (prints unexpected address)"
        }
        }
    }
    }
    return 0
    return 0
}
}
proc test_p_x_addr { var addr } {
proc test_p_x_addr { var addr } {
    global gdb_prompt
    global gdb_prompt
    set test "print/x &$var"
    set test "print/x &$var"
    gdb_test_multiple $test $test {
    gdb_test_multiple $test $test {
        -re "\\$\[0-9\]+ = $addr.*$gdb_prompt $" {
        -re "\\$\[0-9\]+ = $addr.*$gdb_prompt $" {
            pass $test
            pass $test
        }
        }
        -re "\\$\[0-9\]+ = 0x\[a-f0-9+\]+.*$gdb_prompt $" {
        -re "\\$\[0-9\]+ = 0x\[a-f0-9+\]+.*$gdb_prompt $" {
            fail "$test (prints unexpected address)"
            fail "$test (prints unexpected address)"
        }
        }
    }
    }
    return 0
    return 0
}
}
proc test_p_x_ref_addr { var addr } {
proc test_p_x_ref_addr { var addr } {
    global gdb_prompt
    global gdb_prompt
    set test "print/x *(&(&$var))"
    set test "print/x *(&(&$var))"
    gdb_test_multiple $test $test {
    gdb_test_multiple $test $test {
        -re "\\$\[0-9\]+ = $addr.*$gdb_prompt $" {
        -re "\\$\[0-9\]+ = $addr.*$gdb_prompt $" {
            pass $test
            pass $test
        }
        }
        -re "\\$\[0-9\]+ = 0x\[a-f0-9+\]+.*$gdb_prompt $" {
        -re "\\$\[0-9\]+ = 0x\[a-f0-9+\]+.*$gdb_prompt $" {
            fail "$test (prints unexpected address)"
            fail "$test (prints unexpected address)"
        }
        }
    }
    }
    return 0
    return 0
}
}
gdb_exit
gdb_exit
gdb_start
gdb_start
gdb_reinitialize_dir $srcdir/$subdir
gdb_reinitialize_dir $srcdir/$subdir
gdb_load ${binfile}
gdb_load ${binfile}
runto ${srcfile}:[gdb_get_line_number "marker here"]
runto ${srcfile}:[gdb_get_line_number "marker here"]
set s1_address  [get_address "s1"]
set s1_address  [get_address "s1"]
set e1_address  [get_address "e1"]
set e1_address  [get_address "e1"]
set i1_address  [get_address "i1"]
set i1_address  [get_address "i1"]
test_p_x "s" "Struct1 &" "{x = 0xd, y = 0x13}" $s1_address
test_p_x "s" "Struct1 &" "{x = 0xd, y = 0x13}" $s1_address
test_p_x "e" "Enum1 &" "0xb" $e1_address
test_p_x "e" "Enum1 &" "0xb" $e1_address
test_p_x "i" "int &" "0x17" $i1_address
test_p_x "i" "int &" "0x17" $i1_address
test_p_x_addr "s" $s1_address
test_p_x_addr "s" $s1_address
test_p_x_addr "e" $e1_address
test_p_x_addr "e" $e1_address
test_p_x_addr "i" $i1_address
test_p_x_addr "i" $i1_address
test_p_x_ref_addr "s" $s1_address
test_p_x_ref_addr "s" $s1_address
test_p_x_ref_addr "i" $i1_address
test_p_x_ref_addr "i" $i1_address
test_p_x_ref_addr "e" $e1_address
test_p_x_ref_addr "e" $e1_address
 
 

powered by: WebSVN 2.1.0

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