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

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gdb-7.2/] [gdb-7.2-or32-1.0rc3/] [gdb/] [testsuite/] [gdb.ada/] [formatted_ref.exp] - Diff between revs 330 and 513

Only display areas with differences | Details | Blame | View Log

Rev 330 Rev 513
# Copyright 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
# Copyright 2007, 2008, 2009, 2010 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.
# Note: This test is essentially a transcription of gdb.cp/formatted-ref.exp,
# Note: This test is essentially a transcription of gdb.cp/formatted-ref.exp,
# and is thus much more wordy than it needs to be. There are fewer
# and is thus much more wordy than it needs to be. There are fewer
# tests because only a few parameter types in Ada are required to be
# tests because only a few parameter types in Ada are required to be
# passed by reference, and there is no equivalent of &(&x) for reference
# passed by reference, and there is no equivalent of &(&x) for reference
# values.
# values.
# This also tests that some other arithmetic operations on references
# This also tests that some other arithmetic operations on references
# work properly: condition expression using a reference object as one of its
# work properly: condition expression using a reference object as one of its
# operand.
# operand.
if $tracelevel then {
if $tracelevel then {
        strace $tracelevel
        strace $tracelevel
}
}
load_lib "ada.exp"
load_lib "ada.exp"
set testdir "formatted_ref"
set testdir "formatted_ref"
set testfile "${testdir}/formatted_ref"
set testfile "${testdir}/formatted_ref"
set srcfile ${srcdir}/${subdir}/${testfile}.adb
set srcfile ${srcdir}/${subdir}/${testfile}.adb
set binfile ${objdir}/${subdir}/${testfile}
set binfile ${objdir}/${subdir}/${testfile}
file mkdir ${objdir}/${subdir}/${testdir}
file mkdir ${objdir}/${subdir}/${testdir}
if {[gdb_compile_ada "${srcfile}" "${binfile}" executable [list debug ]] != "" } {
if {[gdb_compile_ada "${srcfile}" "${binfile}" executable [list debug ]] != "" } {
    # JPB. This should just be unsupported (like all the other tests) when
    # JPB. This should just be unsupported (like all the other tests) when
    # compilation fails (that will happen with gdb_compile_ada
    # compilation fails (that will happen with gdb_compile_ada
    # automatically). No need for "untested" here.
    # automatically). No need for "untested" here.
    # 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
    gdb_test_multiple "print $var'access" "address of $var" {
    gdb_test_multiple "print $var'access" "address of $var" {
        -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)
        }
        }
    }
    }
    perror "couldn't find address of $var"
    perror "couldn't find address of $var"
    return ""
    return ""
}
}
proc test_p_x { var val addr } {
proc test_p_x { var 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 $val].*$gdb_prompt $" {
        -re "\\$\[0-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'access"
    set test "print/x $var'access"
    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_op1_equals_op2 {op1 op2} {
proc test_p_op1_equals_op2 {op1 op2} {
    set test "print $op1 = $op2"
    set test "print $op1 = $op2"
    gdb_test $test "\\$\[0-9\]+ = true"
    gdb_test $test "\\$\[0-9\]+ = true"
}
}
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 defs.adb:[gdb_get_line_number "marker here" ${testdir}/defs.adb ]
runto defs.adb:[gdb_get_line_number "marker here" ${testdir}/defs.adb ]
set s1_address  [get_address "s1"]
set s1_address  [get_address "s1"]
test_p_x "s" "(x => 0xd, y => 0x13)" $s1_address
test_p_x "s" "(x => 0xd, y => 0x13)" $s1_address
test_p_x_addr "s" $s1_address
test_p_x_addr "s" $s1_address
test_p_op1_equals_op2 "s.x" "13"
test_p_op1_equals_op2 "s.x" "13"
 
 

powered by: WebSVN 2.1.0

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